diff --git a/Assets/Art/Shaders.meta b/Assets/Art/Shaders.meta new file mode 100644 index 0000000000..daa4b657ef --- /dev/null +++ b/Assets/Art/Shaders.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d95aab67bc1bdbb4483d64736a96da4f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Art/Shaders/DeferredShadingHalfToon.shader b/Assets/Art/Shaders/DeferredShadingHalfToon.shader new file mode 100644 index 0000000000..7cab07a903 --- /dev/null +++ b/Assets/Art/Shaders/DeferredShadingHalfToon.shader @@ -0,0 +1,218 @@ +// Unity built-in shader source. Copyright (c) 2016 Unity Technologies. MIT license (see license.txt) + +Shader "Custom/DeferredShadingHalfToon" { +Properties { + _LightTexture0 ("", any) = "" {} + _LightTextureB0 ("", 2D) = "" {} + _ShadowMapTexture ("", any) = "" {} + _SrcBlend ("", Float) = 1 + _DstBlend ("", Float) = 1 +} +SubShader { + +// Pass 1: Lighting pass +// LDR case - Lighting encoded into a subtractive ARGB8 buffer +// HDR case - Lighting additively blended into floating point buffer +Pass { + ZWrite Off + Blend [_SrcBlend] [_DstBlend] + +CGPROGRAM +#pragma target 3.0 +#pragma vertex vert_deferred +#pragma fragment frag +#pragma multi_compile_lightpass +#pragma multi_compile ___ UNITY_HDR_ON + +#pragma exclude_renderers nomrt + +#include "UnityCG.cginc" +#include "UnityDeferredLibrary.cginc" +#include "UnityPBSLighting.cginc" +#include "UnityStandardUtils.cginc" +#include "UnityGBuffer.cginc" +#include "UnityStandardBRDF.cginc" + +sampler2D _CameraGBufferTexture0; +sampler2D _CameraGBufferTexture1; +sampler2D _CameraGBufferTexture2; +half4 WrapBRDF (half3 diffColor, half3 specColor, half oneMinusReflectivity, half smoothness, + float3 normal, float3 viewDir, + UnityLight light, UnityIndirect gi) +{ + float perceptualRoughness = SmoothnessToPerceptualRoughness (smoothness); + float3 halfDir = Unity_SafeNormalize (float3(light.dir) + viewDir); + +// NdotV should not be negative for visible pixels, but it can happen due to perspective projection and normal mapping +// In this case normal should be modified to become valid (i.e facing camera) and not cause weird artifacts. +// but this operation adds few ALU and users may not want it. Alternative is to simply take the abs of NdotV (less correct but works too). +// Following define allow to control this. Set it to 0 if ALU is critical on your platform. +// This correction is interesting for GGX with SmithJoint visibility function because artifacts are more visible in this case due to highlight edge of rough surface +// Edit: Disable this code by default for now as it is not compatible with two sided lighting used in SpeedTree. +#define UNITY_HANDLE_CORRECTLY_NEGATIVE_NDOTV 0 + +#if UNITY_HANDLE_CORRECTLY_NEGATIVE_NDOTV + // The amount we shift the normal toward the view vector is defined by the dot product. + half shiftAmount = dot(normal, viewDir); + normal = shiftAmount < 0.0f ? normal + viewDir * (-shiftAmount + 1e-5f) : normal; + // A re-normalization should be applied here but as the shift is small we don't do it to save ALU. + //normal = normalize(normal); + + float nv = saturate(dot(normal, viewDir)); // TODO: this saturate should no be necessary here +#else + half nv = abs(dot(normal, viewDir)); // This abs allow to limit artifact +#endif + + float nl = saturate(dot(normal, light.dir)); + float nh = saturate(dot(normal, halfDir)); + + half lv = saturate(dot(light.dir, viewDir)); + half lh = saturate(dot(light.dir, halfDir)); + + // Diffuse term + half diffuseTerm = DisneyDiffuse(nv, nl, lh, perceptualRoughness) * nl; + diffuseTerm = smoothstep(0, 0.75, diffuseTerm) * 0.7 + 0.3; + + // Specular term + // HACK: theoretically we should divide diffuseTerm by Pi and not multiply specularTerm! + // BUT 1) that will make shader look significantly darker than Legacy ones + // and 2) on engine side "Non-important" lights have to be divided by Pi too in cases when they are injected into ambient SH + float roughness = PerceptualRoughnessToRoughness(perceptualRoughness); +#if UNITY_BRDF_GGX + // GGX with roughtness to 0 would mean no specular at all, using max(roughness, 0.002) here to match HDrenderloop roughtness remapping. + roughness = max(roughness, 0.002); + float V = SmithJointGGXVisibilityTerm (nl, nv, roughness) * 0.5 + 0.5; + float D = GGXTerm (nh, roughness); +#else + // Legacy + half V = SmithBeckmannVisibilityTerm (nl, nv, roughness); + half D = NDFBlinnPhongNormalizedTerm (nh, PerceptualRoughnessToSpecPower(perceptualRoughness)); +#endif + + float specularTerm = V*D * UNITY_PI; // Torrance-Sparrow model, Fresnel is applied later + +# ifdef UNITY_COLORSPACE_GAMMA + specularTerm = sqrt(max(1e-4h, specularTerm)); +# endif + + // specularTerm * nl can be NaN on Metal in some cases, use max() to make sure it's a sane value + specularTerm = max(0, specularTerm * nl); +#if defined(_SPECULARHIGHLIGHTS_OFF) + specularTerm = 0.0; +#endif + + // surfaceReduction = Int D(NdotH) * NdotH * Id(NdotL>0) dH = 1/(roughness^2+1) + half surfaceReduction; +# ifdef UNITY_COLORSPACE_GAMMA + surfaceReduction = 1.0-0.28*roughness*perceptualRoughness; // 1-0.28*x^3 as approximation for (1/(x^4+1))^(1/2.2) on the domain [0;1] +# else + surfaceReduction = 1.0 / (roughness*roughness + 1.0); // fade \in [0.5;1] +# endif + + // To provide true Lambert lighting, we need to be able to kill specular completely. + specularTerm *= any(specColor) ? 1.0 : 0.0; + + half grazingTerm = saturate(smoothness + (1-oneMinusReflectivity)); + half3 color = diffColor * (gi.diffuse + light.color * diffuseTerm) + + specularTerm * light.color * FresnelTerm (specColor, lh) + + surfaceReduction * gi.specular * FresnelLerp (specColor, grazingTerm, nv); + + return half4(color, 1); +} +half4 CalculateLight (unity_v2f_deferred i) +{ + float3 wpos; + float2 uv; + float atten, fadeDist; + UnityLight light; + UNITY_INITIALIZE_OUTPUT(UnityLight, light); + UnityDeferredCalculateLightParams (i, wpos, uv, light.dir, atten, fadeDist); + + light.color = _LightColor.rgb * atten; + + // unpack Gbuffer + half4 gbuffer0 = tex2D (_CameraGBufferTexture0, uv); + half4 gbuffer1 = tex2D (_CameraGBufferTexture1, uv); + half4 gbuffer2 = tex2D (_CameraGBufferTexture2, uv); + UnityStandardData data = UnityStandardDataFromGbuffer(gbuffer0, gbuffer1, gbuffer2); + + float3 eyeVec = normalize(wpos-_WorldSpaceCameraPos); + half oneMinusReflectivity = 1 - SpecularStrength(data.specularColor.rgb); + + UnityIndirect ind; + UNITY_INITIALIZE_OUTPUT(UnityIndirect, ind); + ind.diffuse = 0; + ind.specular = 0; + + half4 res = WrapBRDF (data.diffuseColor, data.specularColor, oneMinusReflectivity, data.smoothness, data.normalWorld, -eyeVec, light, ind); + + return res; +} + + +#ifdef UNITY_HDR_ON +half4 +#else +fixed4 +#endif +frag (unity_v2f_deferred i) : SV_Target +{ + half4 c = CalculateLight(i); + #ifdef UNITY_HDR_ON + return c; + #else + return exp2(-c); + #endif +} + +ENDCG +} + + +// Pass 2: Final decode pass. +// Used only with HDR off, to decode the logarithmic buffer into the main RT +Pass { + ZTest Always Cull Off ZWrite Off + Stencil { + ref [_StencilNonBackground] + readmask [_StencilNonBackground] + // Normally just comp would be sufficient, but there's a bug and only front face stencil state is set (case 583207) + compback equal + compfront equal + } + +CGPROGRAM +#pragma target 3.0 +#pragma vertex vert +#pragma fragment frag +#pragma exclude_renderers nomrt + +#include "UnityCG.cginc" + +sampler2D _LightBuffer; +struct v2f { + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; +}; + +v2f vert (float4 vertex : POSITION, float2 texcoord : TEXCOORD0) +{ + v2f o; + o.vertex = UnityObjectToClipPos(vertex); + o.texcoord = texcoord.xy; +#ifdef UNITY_SINGLE_PASS_STEREO + o.texcoord = TransformStereoScreenSpaceTex(o.texcoord, 1.0f); +#endif + return o; +} + +fixed4 frag (v2f i) : SV_Target +{ + return -log2(tex2D(_LightBuffer, i.texcoord)); +} +ENDCG +} + +} +Fallback Off +} diff --git a/Assets/Art/Shaders/DeferredShadingHalfToon.shader.meta b/Assets/Art/Shaders/DeferredShadingHalfToon.shader.meta new file mode 100644 index 0000000000..85c54f7d8e --- /dev/null +++ b/Assets/Art/Shaders/DeferredShadingHalfToon.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 7b7ce4bceabab4b49b6740ff8d8feabe +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Art/Shaders/DeferredShadingToon.shader b/Assets/Art/Shaders/DeferredShadingToon.shader new file mode 100644 index 0000000000..82d4179793 --- /dev/null +++ b/Assets/Art/Shaders/DeferredShadingToon.shader @@ -0,0 +1,218 @@ +// Unity built-in shader source. Copyright (c) 2016 Unity Technologies. MIT license (see license.txt) + +Shader "Custom/DeferredShadingToon" { +Properties { + _LightTexture0 ("", any) = "" {} + _LightTextureB0 ("", 2D) = "" {} + _ShadowMapTexture ("", any) = "" {} + _SrcBlend ("", Float) = 1 + _DstBlend ("", Float) = 1 +} +SubShader { + +// Pass 1: Lighting pass +// LDR case - Lighting encoded into a subtractive ARGB8 buffer +// HDR case - Lighting additively blended into floating point buffer +Pass { + ZWrite Off + Blend [_SrcBlend] [_DstBlend] + +CGPROGRAM +#pragma target 3.0 +#pragma vertex vert_deferred +#pragma fragment frag +#pragma multi_compile_lightpass +#pragma multi_compile ___ UNITY_HDR_ON + +#pragma exclude_renderers nomrt + +#include "UnityCG.cginc" +#include "UnityDeferredLibrary.cginc" +#include "UnityPBSLighting.cginc" +#include "UnityStandardUtils.cginc" +#include "UnityGBuffer.cginc" +#include "UnityStandardBRDF.cginc" + +sampler2D _CameraGBufferTexture0; +sampler2D _CameraGBufferTexture1; +sampler2D _CameraGBufferTexture2; +half4 WrapBRDF (half3 diffColor, half3 specColor, half oneMinusReflectivity, half smoothness, + float3 normal, float3 viewDir, + UnityLight light, UnityIndirect gi) +{ + float perceptualRoughness = SmoothnessToPerceptualRoughness (smoothness); + float3 halfDir = Unity_SafeNormalize (float3(light.dir) + viewDir); + +// NdotV should not be negative for visible pixels, but it can happen due to perspective projection and normal mapping +// In this case normal should be modified to become valid (i.e facing camera) and not cause weird artifacts. +// but this operation adds few ALU and users may not want it. Alternative is to simply take the abs of NdotV (less correct but works too). +// Following define allow to control this. Set it to 0 if ALU is critical on your platform. +// This correction is interesting for GGX with SmithJoint visibility function because artifacts are more visible in this case due to highlight edge of rough surface +// Edit: Disable this code by default for now as it is not compatible with two sided lighting used in SpeedTree. +#define UNITY_HANDLE_CORRECTLY_NEGATIVE_NDOTV 0 + +#if UNITY_HANDLE_CORRECTLY_NEGATIVE_NDOTV + // The amount we shift the normal toward the view vector is defined by the dot product. + half shiftAmount = dot(normal, viewDir); + normal = shiftAmount < 0.0f ? normal + viewDir * (-shiftAmount + 1e-5f) : normal; + // A re-normalization should be applied here but as the shift is small we don't do it to save ALU. + //normal = normalize(normal); + + float nv = saturate(dot(normal, viewDir)); // TODO: this saturate should no be necessary here +#else + half nv = abs(dot(normal, viewDir)); // This abs allow to limit artifact +#endif + + float nl = saturate(dot(normal, light.dir)); + float nh = saturate(dot(normal, halfDir)); + + half lv = saturate(dot(light.dir, viewDir)); + half lh = saturate(dot(light.dir, halfDir)); + + // Diffuse term + //half diffuseTerm = DisneyDiffuse(nv, nl, lh, perceptualRoughness) * nl * 0.5 + 0.5; + half diffuseTerm = smoothstep(0, 0.3, nl) * 0.625 + 0.375; + + // Specular term + // HACK: theoretically we should divide diffuseTerm by Pi and not multiply specularTerm! + // BUT 1) that will make shader look significantly darker than Legacy ones + // and 2) on engine side "Non-important" lights have to be divided by Pi too in cases when they are injected into ambient SH + float roughness = PerceptualRoughnessToRoughness(perceptualRoughness); +#if UNITY_BRDF_GGX + // GGX with roughtness to 0 would mean no specular at all, using max(roughness, 0.002) here to match HDrenderloop roughtness remapping. + roughness = max(roughness, 0.002); + float V = SmithJointGGXVisibilityTerm (nl, nv, roughness) * 0.5 + 0.5; + float D = GGXTerm (nh, roughness); +#else + // Legacy + half V = SmithBeckmannVisibilityTerm (nl, nv, roughness); + half D = NDFBlinnPhongNormalizedTerm (nh, PerceptualRoughnessToSpecPower(perceptualRoughness)); +#endif + + float specularTerm = V*D * UNITY_PI; // Torrance-Sparrow model, Fresnel is applied later + +# ifdef UNITY_COLORSPACE_GAMMA + specularTerm = sqrt(max(1e-4h, specularTerm)); +# endif + + // specularTerm * nl can be NaN on Metal in some cases, use max() to make sure it's a sane value + specularTerm = max(0, specularTerm * nl); +#if defined(_SPECULARHIGHLIGHTS_OFF) + specularTerm = 0.0; +#endif + + // surfaceReduction = Int D(NdotH) * NdotH * Id(NdotL>0) dH = 1/(roughness^2+1) + half surfaceReduction; +# ifdef UNITY_COLORSPACE_GAMMA + surfaceReduction = 1.0-0.28*roughness*perceptualRoughness; // 1-0.28*x^3 as approximation for (1/(x^4+1))^(1/2.2) on the domain [0;1] +# else + surfaceReduction = 1.0 / (roughness*roughness + 1.0); // fade \in [0.5;1] +# endif + + // To provide true Lambert lighting, we need to be able to kill specular completely. + specularTerm *= any(specColor) ? 1.0 : 0.0; + + half grazingTerm = saturate(smoothness + (1-oneMinusReflectivity)); + half3 color = diffColor * (gi.diffuse + light.color * diffuseTerm) + + specularTerm * light.color * FresnelTerm (specColor, lh) + + surfaceReduction * gi.specular * FresnelLerp (specColor, grazingTerm, nv); + + return half4(color, 1); +} +half4 CalculateLight (unity_v2f_deferred i) +{ + float3 wpos; + float2 uv; + float atten, fadeDist; + UnityLight light; + UNITY_INITIALIZE_OUTPUT(UnityLight, light); + UnityDeferredCalculateLightParams (i, wpos, uv, light.dir, atten, fadeDist); + + light.color = _LightColor.rgb * atten; + + // unpack Gbuffer + half4 gbuffer0 = tex2D (_CameraGBufferTexture0, uv); + half4 gbuffer1 = tex2D (_CameraGBufferTexture1, uv); + half4 gbuffer2 = tex2D (_CameraGBufferTexture2, uv); + UnityStandardData data = UnityStandardDataFromGbuffer(gbuffer0, gbuffer1, gbuffer2); + + float3 eyeVec = normalize(wpos-_WorldSpaceCameraPos); + half oneMinusReflectivity = 1 - SpecularStrength(data.specularColor.rgb); + + UnityIndirect ind; + UNITY_INITIALIZE_OUTPUT(UnityIndirect, ind); + ind.diffuse = 0; + ind.specular = 0; + + half4 res = WrapBRDF (data.diffuseColor, data.specularColor, oneMinusReflectivity, data.smoothness, data.normalWorld, -eyeVec, light, ind); + + return res; +} + + +#ifdef UNITY_HDR_ON +half4 +#else +fixed4 +#endif +frag (unity_v2f_deferred i) : SV_Target +{ + half4 c = CalculateLight(i); + #ifdef UNITY_HDR_ON + return c; + #else + return exp2(-c); + #endif +} + +ENDCG +} + + +// Pass 2: Final decode pass. +// Used only with HDR off, to decode the logarithmic buffer into the main RT +Pass { + ZTest Always Cull Off ZWrite Off + Stencil { + ref [_StencilNonBackground] + readmask [_StencilNonBackground] + // Normally just comp would be sufficient, but there's a bug and only front face stencil state is set (case 583207) + compback equal + compfront equal + } + +CGPROGRAM +#pragma target 3.0 +#pragma vertex vert +#pragma fragment frag +#pragma exclude_renderers nomrt + +#include "UnityCG.cginc" + +sampler2D _LightBuffer; +struct v2f { + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; +}; + +v2f vert (float4 vertex : POSITION, float2 texcoord : TEXCOORD0) +{ + v2f o; + o.vertex = UnityObjectToClipPos(vertex); + o.texcoord = texcoord.xy; +#ifdef UNITY_SINGLE_PASS_STEREO + o.texcoord = TransformStereoScreenSpaceTex(o.texcoord, 1.0f); +#endif + return o; +} + +fixed4 frag (v2f i) : SV_Target +{ + return -log2(tex2D(_LightBuffer, i.texcoord)); +} +ENDCG +} + +} +Fallback Off +} diff --git a/Assets/Art/Shaders/DeferredShadingToon.shader.meta b/Assets/Art/Shaders/DeferredShadingToon.shader.meta new file mode 100644 index 0000000000..784cdbbb2b --- /dev/null +++ b/Assets/Art/Shaders/DeferredShadingToon.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 0a33debe9fd6eee4fbb3bca1b1cc92e5 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Art/Shaders/DeferredShadingWrap.shader b/Assets/Art/Shaders/DeferredShadingWrap.shader new file mode 100644 index 0000000000..2b21e7a3e8 --- /dev/null +++ b/Assets/Art/Shaders/DeferredShadingWrap.shader @@ -0,0 +1,217 @@ +// Unity built-in shader source. Copyright (c) 2016 Unity Technologies. MIT license (see license.txt) + +Shader "Custom/DeferredShadingWrap" { +Properties { + _LightTexture0 ("", any) = "" {} + _LightTextureB0 ("", 2D) = "" {} + _ShadowMapTexture ("", any) = "" {} + _SrcBlend ("", Float) = 1 + _DstBlend ("", Float) = 1 +} +SubShader { + +// Pass 1: Lighting pass +// LDR case - Lighting encoded into a subtractive ARGB8 buffer +// HDR case - Lighting additively blended into floating point buffer +Pass { + ZWrite Off + Blend [_SrcBlend] [_DstBlend] + +CGPROGRAM +#pragma target 3.0 +#pragma vertex vert_deferred +#pragma fragment frag +#pragma multi_compile_lightpass +#pragma multi_compile ___ UNITY_HDR_ON + +#pragma exclude_renderers nomrt + +#include "UnityCG.cginc" +#include "UnityDeferredLibrary.cginc" +#include "UnityPBSLighting.cginc" +#include "UnityStandardUtils.cginc" +#include "UnityGBuffer.cginc" +#include "UnityStandardBRDF.cginc" + +sampler2D _CameraGBufferTexture0; +sampler2D _CameraGBufferTexture1; +sampler2D _CameraGBufferTexture2; +half4 WrapBRDF (half3 diffColor, half3 specColor, half oneMinusReflectivity, half smoothness, + float3 normal, float3 viewDir, + UnityLight light, UnityIndirect gi) +{ + float perceptualRoughness = SmoothnessToPerceptualRoughness (smoothness); + float3 halfDir = Unity_SafeNormalize (float3(light.dir) + viewDir); + +// NdotV should not be negative for visible pixels, but it can happen due to perspective projection and normal mapping +// In this case normal should be modified to become valid (i.e facing camera) and not cause weird artifacts. +// but this operation adds few ALU and users may not want it. Alternative is to simply take the abs of NdotV (less correct but works too). +// Following define allow to control this. Set it to 0 if ALU is critical on your platform. +// This correction is interesting for GGX with SmithJoint visibility function because artifacts are more visible in this case due to highlight edge of rough surface +// Edit: Disable this code by default for now as it is not compatible with two sided lighting used in SpeedTree. +#define UNITY_HANDLE_CORRECTLY_NEGATIVE_NDOTV 0 + +#if UNITY_HANDLE_CORRECTLY_NEGATIVE_NDOTV + // The amount we shift the normal toward the view vector is defined by the dot product. + half shiftAmount = dot(normal, viewDir); + normal = shiftAmount < 0.0f ? normal + viewDir * (-shiftAmount + 1e-5f) : normal; + // A re-normalization should be applied here but as the shift is small we don't do it to save ALU. + //normal = normalize(normal); + + float nv = saturate(dot(normal, viewDir)); // TODO: this saturate should no be necessary here +#else + half nv = abs(dot(normal, viewDir)); // This abs allow to limit artifact +#endif + + float nl = saturate(dot(normal, light.dir)); + float nh = saturate(dot(normal, halfDir)); + + half lv = saturate(dot(light.dir, viewDir)); + half lh = saturate(dot(light.dir, halfDir)); + + // Diffuse term + half diffuseTerm = DisneyDiffuse(nv, nl, lh, perceptualRoughness) * nl * 0.5 + 0.5; + + // Specular term + // HACK: theoretically we should divide diffuseTerm by Pi and not multiply specularTerm! + // BUT 1) that will make shader look significantly darker than Legacy ones + // and 2) on engine side "Non-important" lights have to be divided by Pi too in cases when they are injected into ambient SH + float roughness = PerceptualRoughnessToRoughness(perceptualRoughness); +#if UNITY_BRDF_GGX + // GGX with roughtness to 0 would mean no specular at all, using max(roughness, 0.002) here to match HDrenderloop roughtness remapping. + roughness = max(roughness, 0.002); + float V = SmithJointGGXVisibilityTerm (nl, nv, roughness) * 0.5 + 0.5; + float D = GGXTerm (nh, roughness); +#else + // Legacy + half V = SmithBeckmannVisibilityTerm (nl, nv, roughness); + half D = NDFBlinnPhongNormalizedTerm (nh, PerceptualRoughnessToSpecPower(perceptualRoughness)); +#endif + + float specularTerm = V*D * UNITY_PI; // Torrance-Sparrow model, Fresnel is applied later + +# ifdef UNITY_COLORSPACE_GAMMA + specularTerm = sqrt(max(1e-4h, specularTerm)); +# endif + + // specularTerm * nl can be NaN on Metal in some cases, use max() to make sure it's a sane value + specularTerm = max(0, specularTerm * nl); +#if defined(_SPECULARHIGHLIGHTS_OFF) + specularTerm = 0.0; +#endif + + // surfaceReduction = Int D(NdotH) * NdotH * Id(NdotL>0) dH = 1/(roughness^2+1) + half surfaceReduction; +# ifdef UNITY_COLORSPACE_GAMMA + surfaceReduction = 1.0-0.28*roughness*perceptualRoughness; // 1-0.28*x^3 as approximation for (1/(x^4+1))^(1/2.2) on the domain [0;1] +# else + surfaceReduction = 1.0 / (roughness*roughness + 1.0); // fade \in [0.5;1] +# endif + + // To provide true Lambert lighting, we need to be able to kill specular completely. + specularTerm *= any(specColor) ? 1.0 : 0.0; + + half grazingTerm = saturate(smoothness + (1-oneMinusReflectivity)); + half3 color = diffColor * (gi.diffuse + light.color * diffuseTerm) + + specularTerm * light.color * FresnelTerm (specColor, lh) + + surfaceReduction * gi.specular * FresnelLerp (specColor, grazingTerm, nv); + + return half4(color, 1); +} +half4 CalculateLight (unity_v2f_deferred i) +{ + float3 wpos; + float2 uv; + float atten, fadeDist; + UnityLight light; + UNITY_INITIALIZE_OUTPUT(UnityLight, light); + UnityDeferredCalculateLightParams (i, wpos, uv, light.dir, atten, fadeDist); + + light.color = _LightColor.rgb * atten; + + // unpack Gbuffer + half4 gbuffer0 = tex2D (_CameraGBufferTexture0, uv); + half4 gbuffer1 = tex2D (_CameraGBufferTexture1, uv); + half4 gbuffer2 = tex2D (_CameraGBufferTexture2, uv); + UnityStandardData data = UnityStandardDataFromGbuffer(gbuffer0, gbuffer1, gbuffer2); + + float3 eyeVec = normalize(wpos-_WorldSpaceCameraPos); + half oneMinusReflectivity = 1 - SpecularStrength(data.specularColor.rgb); + + UnityIndirect ind; + UNITY_INITIALIZE_OUTPUT(UnityIndirect, ind); + ind.diffuse = 0; + ind.specular = 0; + + half4 res = WrapBRDF (data.diffuseColor, data.specularColor, oneMinusReflectivity, data.smoothness, data.normalWorld, -eyeVec, light, ind); + + return res; +} + + +#ifdef UNITY_HDR_ON +half4 +#else +fixed4 +#endif +frag (unity_v2f_deferred i) : SV_Target +{ + half4 c = CalculateLight(i); + #ifdef UNITY_HDR_ON + return c; + #else + return exp2(-c); + #endif +} + +ENDCG +} + + +// Pass 2: Final decode pass. +// Used only with HDR off, to decode the logarithmic buffer into the main RT +Pass { + ZTest Always Cull Off ZWrite Off + Stencil { + ref [_StencilNonBackground] + readmask [_StencilNonBackground] + // Normally just comp would be sufficient, but there's a bug and only front face stencil state is set (case 583207) + compback equal + compfront equal + } + +CGPROGRAM +#pragma target 3.0 +#pragma vertex vert +#pragma fragment frag +#pragma exclude_renderers nomrt + +#include "UnityCG.cginc" + +sampler2D _LightBuffer; +struct v2f { + float4 vertex : SV_POSITION; + float2 texcoord : TEXCOORD0; +}; + +v2f vert (float4 vertex : POSITION, float2 texcoord : TEXCOORD0) +{ + v2f o; + o.vertex = UnityObjectToClipPos(vertex); + o.texcoord = texcoord.xy; +#ifdef UNITY_SINGLE_PASS_STEREO + o.texcoord = TransformStereoScreenSpaceTex(o.texcoord, 1.0f); +#endif + return o; +} + +fixed4 frag (v2f i) : SV_Target +{ + return -log2(tex2D(_LightBuffer, i.texcoord)); +} +ENDCG +} + +} +Fallback Off +} diff --git a/Assets/Art/Shaders/DeferredShadingWrap.shader.meta b/Assets/Art/Shaders/DeferredShadingWrap.shader.meta new file mode 100644 index 0000000000..0ac7c9367a --- /dev/null +++ b/Assets/Art/Shaders/DeferredShadingWrap.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: ab568569810a2644ba93d90abe8ec557 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Art/Shaders/Standard.shader b/Assets/Art/Shaders/Standard.shader new file mode 100644 index 0000000000..bf60d62b73 --- /dev/null +++ b/Assets/Art/Shaders/Standard.shader @@ -0,0 +1,53 @@ +Shader "Custom/Standard" +{ + Properties + { + _Color ("Color", Color) = (1,1,1,1) + _MainTex ("Albedo (RGB)", 2D) = "white" {} + _Glossiness ("Smoothness", Range(0,1)) = 0.5 + _Metallic ("Metallic", Range(0,1)) = 0.0 + } + SubShader + { + Tags { "RenderType"="Opaque" } + LOD 200 + + CGPROGRAM + // Physically based Standard lighting model, and enable shadows on all light types + #pragma surface surf Standard fullforwardshadows + + // Use shader model 3.0 target, to get nicer looking lighting + #pragma target 3.0 + + sampler2D _MainTex; + + struct Input + { + float2 uv_MainTex; + }; + + half _Glossiness; + half _Metallic; + fixed4 _Color; + + // Add instancing support for this shader. You need to check 'Enable Instancing' on materials that use the shader. + // See https://docs.unity3d.com/Manual/GPUInstancing.html for more information about instancing. + // #pragma instancing_options assumeuniformscaling + UNITY_INSTANCING_BUFFER_START(Props) + // put more per-instance properties here + UNITY_INSTANCING_BUFFER_END(Props) + + void surf (Input IN, inout SurfaceOutputStandard o) + { + // Albedo comes from a texture tinted by color + fixed4 c = tex2D (_MainTex, IN.uv_MainTex) * _Color; + o.Albedo = c.rgb; + // Metallic and smoothness come from slider variables + o.Metallic = _Metallic; + o.Smoothness = _Glossiness; + o.Alpha = c.a; + } + ENDCG + } + FallBack "Diffuse" +} diff --git a/Assets/Art/Shaders/Standard.shader.meta b/Assets/Art/Shaders/Standard.shader.meta new file mode 100644 index 0000000000..b61b5a5e38 --- /dev/null +++ b/Assets/Art/Shaders/Standard.shader.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: b41d78ce99261834088617809031d0bd +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Art/Shaders/UnityDeferredLibrary.cginc b/Assets/Art/Shaders/UnityDeferredLibrary.cginc new file mode 100644 index 0000000000..25c2c4df53 --- /dev/null +++ b/Assets/Art/Shaders/UnityDeferredLibrary.cginc @@ -0,0 +1,217 @@ +// Unity built-in shader source. Copyright (c) 2016 Unity Technologies. MIT license (see license.txt) + +#ifndef UNITY_DEFERRED_LIBRARY_INCLUDED +#define UNITY_DEFERRED_LIBRARY_INCLUDED + +// Deferred lighting / shading helpers + + +// -------------------------------------------------------- +// Vertex shader + +struct unity_v2f_deferred { + float4 pos : SV_POSITION; + float4 uv : TEXCOORD0; + float3 ray : TEXCOORD1; +}; + +float _LightAsQuad; + +unity_v2f_deferred vert_deferred (float4 vertex : POSITION, float3 normal : NORMAL) +{ + unity_v2f_deferred o; + o.pos = UnityObjectToClipPos(vertex); + o.uv = ComputeScreenPos(o.pos); + o.ray = UnityObjectToViewPos(vertex) * float3(-1,-1,1); + + // normal contains a ray pointing from the camera to one of near plane's + // corners in camera space when we are drawing a full screen quad. + // Otherwise, when rendering 3D shapes, use the ray calculated here. + o.ray = lerp(o.ray, normal, _LightAsQuad); + + return o; +} + + +// -------------------------------------------------------- +// Shared uniforms + + +UNITY_DECLARE_DEPTH_TEXTURE(_CameraDepthTexture); + +float4 _LightDir; +float4 _LightPos; +float4 _LightColor; +float4 unity_LightmapFade; +float4x4 unity_WorldToLight; +sampler2D_float _LightTextureB0; + +#if defined (POINT_COOKIE) +samplerCUBE_float _LightTexture0; +#else +sampler2D_float _LightTexture0; +#endif + +#if defined (SHADOWS_SCREEN) +sampler2D _ShadowMapTexture; +#endif + +#if defined (SHADOWS_SHADOWMASK) +sampler2D _CameraGBufferTexture4; +#endif + +// -------------------------------------------------------- +// Shadow/fade helpers + +// Receiver plane depth bias create artifacts when depth is retrieved from +// the depth buffer. see UnityGetReceiverPlaneDepthBias in UnityShadowLibrary.cginc +#ifdef UNITY_USE_RECEIVER_PLANE_BIAS + #undef UNITY_USE_RECEIVER_PLANE_BIAS +#endif + +#include "UnityShadowLibrary.cginc" + + +//Note : +// SHADOWS_SHADOWMASK + LIGHTMAP_SHADOW_MIXING -> ShadowMask mode +// SHADOWS_SHADOWMASK only -> Distance shadowmask mode + +// -------------------------------------------------------- +half UnityDeferredSampleShadowMask(float2 uv) +{ + half shadowMaskAttenuation = 1.0f; + + #if defined (SHADOWS_SHADOWMASK) + half4 shadowMask = tex2D(_CameraGBufferTexture4, uv); + shadowMaskAttenuation = saturate(dot(shadowMask, unity_OcclusionMaskSelector)); + #endif + + return shadowMaskAttenuation; +} + +// -------------------------------------------------------- +half UnityDeferredSampleRealtimeShadow(half fade, float3 vec, float2 uv) +{ + half shadowAttenuation = 1.0f; + + #if defined (DIRECTIONAL) || defined (DIRECTIONAL_COOKIE) + #if defined(SHADOWS_SCREEN) + shadowAttenuation = tex2D(_ShadowMapTexture, uv).r; + #endif + #endif + + #if defined(UNITY_FAST_COHERENT_DYNAMIC_BRANCHING) && defined(SHADOWS_SOFT) && !defined(LIGHTMAP_SHADOW_MIXING) + //avoid expensive shadows fetches in the distance where coherency will be good + UNITY_BRANCH + if (fade < (1.0f - 1e-2f)) + { + #endif + + #if defined(SPOT) + #if defined(SHADOWS_DEPTH) + float4 shadowCoord = mul(unity_WorldToShadow[0], float4(vec, 1)); + shadowAttenuation = UnitySampleShadowmap(shadowCoord); + #endif + #endif + + #if defined (POINT) || defined (POINT_COOKIE) + #if defined(SHADOWS_CUBE) + shadowAttenuation = UnitySampleShadowmap(vec); + #endif + #endif + + #if defined(UNITY_FAST_COHERENT_DYNAMIC_BRANCHING) && defined(SHADOWS_SOFT) && !defined(LIGHTMAP_SHADOW_MIXING) + } + #endif + + return shadowAttenuation; +} + +// -------------------------------------------------------- +half UnityDeferredComputeShadow(float3 vec, float fadeDist, float2 uv) +{ + + half fade = UnityComputeShadowFade(fadeDist); + half shadowMaskAttenuation = UnityDeferredSampleShadowMask(uv); + half realtimeShadowAttenuation = UnityDeferredSampleRealtimeShadow(fade, vec, uv); + + return UnityMixRealtimeAndBakedShadows(realtimeShadowAttenuation, shadowMaskAttenuation, fade); +} + +// -------------------------------------------------------- +// Common lighting data calculation (direction, attenuation, ...) +void UnityDeferredCalculateLightParams ( + unity_v2f_deferred i, + out float3 outWorldPos, + out float2 outUV, + out half3 outLightDir, + out float outAtten, + out float outFadeDist) +{ + i.ray = i.ray * (_ProjectionParams.z / i.ray.z); + float2 uv = i.uv.xy / i.uv.w; + + // read depth and reconstruct world position + float depth = SAMPLE_DEPTH_TEXTURE(_CameraDepthTexture, uv); + depth = Linear01Depth (depth); + float4 vpos = float4(i.ray * depth,1); + float3 wpos = mul (unity_CameraToWorld, vpos).xyz; + + float fadeDist = UnityComputeShadowFadeDistance(wpos, vpos.z); + + // spot light case + #if defined (SPOT) + float3 tolight = _LightPos.xyz - wpos; + half3 lightDir = normalize (tolight); + + float4 uvCookie = mul (unity_WorldToLight, float4(wpos,1)); + // negative bias because http://aras-p.info/blog/2010/01/07/screenspace-vs-mip-mapping/ + float atten = tex2Dbias (_LightTexture0, float4(uvCookie.xy / uvCookie.w, 0, -8)).w; + atten *= uvCookie.w < 0; + float att = dot(tolight, tolight) * _LightPos.w; + atten *= tex2D (_LightTextureB0, att.rr).r; + + atten *= UnityDeferredComputeShadow (wpos, fadeDist, uv); + + // directional light case + #elif defined (DIRECTIONAL) || defined (DIRECTIONAL_COOKIE) + half3 lightDir = -_LightDir.xyz; + float atten = 1.0; + + atten *= UnityDeferredComputeShadow (wpos, fadeDist, uv); + + #if defined (DIRECTIONAL_COOKIE) + atten *= tex2Dbias (_LightTexture0, float4(mul(unity_WorldToLight, half4(wpos,1)).xy, 0, -8)).w; + #endif //DIRECTIONAL_COOKIE + + // point light case + #elif defined (POINT) || defined (POINT_COOKIE) + float3 tolight = wpos - _LightPos.xyz; + half3 lightDir = -normalize (tolight); + + float att = dot(tolight, tolight) * _LightPos.w; + float attex = tex2D (_LightTextureB0, att.rr).r; + + //todo - make this more modular/adjustable + float sq02 = sqrt(0.2); + float2 j = float2(0.3706, 0.1385); + float atten = attex > sq02 - 0.1 ? attex > sq02 + 0.1 ? 0.2 : 0.05 * atan(16 * (attex-j.x)) + j.y: attex * attex; + + atten *= UnityDeferredComputeShadow (tolight, fadeDist, uv); + + #if defined (POINT_COOKIE) + atten *= texCUBEbias(_LightTexture0, float4(mul(unity_WorldToLight, half4(wpos,1)).xyz, -8)).w; + #endif //POINT_COOKIE + #else + half3 lightDir = 0; + float atten = 0; + #endif + + outWorldPos = wpos; + outUV = uv; + outLightDir = lightDir; + outAtten = atten; + outFadeDist = fadeDist; +} + +#endif // UNITY_DEFERRED_LIBRARY_INCLUDED diff --git a/Assets/Art/Shaders/UnityDeferredLibrary.cginc.meta b/Assets/Art/Shaders/UnityDeferredLibrary.cginc.meta new file mode 100644 index 0000000000..3645c34c3a --- /dev/null +++ b/Assets/Art/Shaders/UnityDeferredLibrary.cginc.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 6cc55ce54a63b224990f0c0b2c2bdba8 +ShaderImporter: + externalObjects: {} + defaultTextures: [] + nonModifiableTextures: [] + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Content/PostProcessing.meta b/Assets/Content/PostProcessing.meta new file mode 100644 index 0000000000..531e722ed3 --- /dev/null +++ b/Assets/Content/PostProcessing.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dc8497d1cc1f413438ed04e575a9df8a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Content/PostProcessing/MKI.asset b/Assets/Content/PostProcessing/MKI.asset new file mode 100644 index 0000000000..2b6cafe486 --- /dev/null +++ b/Assets/Content/PostProcessing/MKI.asset @@ -0,0 +1,1549 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-6112993174774086776 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6050e2d5de785ce4d931e4dbdbf2d755, type: 3} + m_Name: ChromaticAberration + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + spectralLut: + overrideState: 0 + value: {fileID: 0} + defaultState: 1 + intensity: + overrideState: 1 + value: 0.21 + fastMode: + overrideState: 0 + value: 0 +--- !u!114 &-1078162056846046502 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 48a79b01ea5641d4aa6daa2e23605641, type: 3} + m_Name: Bloom + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + intensity: + overrideState: 1 + value: 1 + threshold: + overrideState: 1 + value: 1 + softKnee: + overrideState: 1 + value: 0.542 + clamp: + overrideState: 1 + value: 1.68 + diffusion: + overrideState: 1 + value: 4.1 + anamorphicRatio: + overrideState: 0 + value: 0 + color: + overrideState: 0 + value: {r: 1, g: 1, b: 1, a: 1} + fastMode: + overrideState: 0 + value: 0 + dirtTexture: + overrideState: 0 + value: {fileID: 0} + defaultState: 1 + dirtIntensity: + overrideState: 0 + value: 0 +--- !u!114 &-1077635151841488244 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b94fcd11afffcb142908bfcb1e261fba, type: 3} + m_Name: MotionBlur + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + shutterAngle: + overrideState: 1 + value: 187.2 + sampleCount: + overrideState: 1 + value: 19 +--- !u!114 &-829873319278908013 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: adb84e30e02715445aeb9959894e3b4d, type: 3} + m_Name: ColorGrading + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + gradingMode: + overrideState: 0 + value: 1 + externalLut: + overrideState: 0 + value: {fileID: 0} + defaultState: 1 + tonemapper: + overrideState: 1 + value: 3 + toneCurveToeStrength: + overrideState: 1 + value: 0.151 + toneCurveToeLength: + overrideState: 1 + value: 1 + toneCurveShoulderStrength: + overrideState: 1 + value: 0.8 + toneCurveShoulderLength: + overrideState: 1 + value: 1.31 + toneCurveShoulderAngle: + overrideState: 1 + value: 0.607 + toneCurveGamma: + overrideState: 0 + value: 1 + ldrLut: + overrideState: 0 + value: {fileID: 0} + defaultState: 4 + ldrLutContribution: + overrideState: 0 + value: 1 + temperature: + overrideState: 1 + value: -3.5 + tint: + overrideState: 1 + value: 4 + colorFilter: + overrideState: 0 + value: {r: 1, g: 1, b: 1, a: 1} + hueShift: + overrideState: 0 + value: 0 + saturation: + overrideState: 1 + value: -13.5 + brightness: + overrideState: 0 + value: 0 + postExposure: + overrideState: 0 + value: 0 + contrast: + overrideState: 1 + value: -25 + mixerRedOutRedIn: + overrideState: 0 + value: 100 + mixerRedOutGreenIn: + overrideState: 0 + value: 0 + mixerRedOutBlueIn: + overrideState: 0 + value: 0 + mixerGreenOutRedIn: + overrideState: 0 + value: 0 + mixerGreenOutGreenIn: + overrideState: 0 + value: 100 + mixerGreenOutBlueIn: + overrideState: 0 + value: 0 + mixerBlueOutRedIn: + overrideState: 0 + value: 0 + mixerBlueOutGreenIn: + overrideState: 0 + value: 0 + mixerBlueOutBlueIn: + overrideState: 0 + value: 100 + lift: + overrideState: 0 + value: {x: 1, y: 1, z: 1, w: 0} + gamma: + overrideState: 0 + value: {x: 1, y: 1, z: 1, w: -0.0000000027090348} + gain: + overrideState: 1 + value: {x: 1, y: 1, z: 1, w: 0.2086331} + masterCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + cachedData: + - 0 + - 0.0078125 + - 0.015625 + - 0.0234375 + - 0.03125 + - 0.0390625 + - 0.046875 + - 0.0546875 + - 0.0625 + - 0.0703125 + - 0.078125 + - 0.0859375 + - 0.09375 + - 0.1015625 + - 0.109375 + - 0.1171875 + - 0.125 + - 0.1328125 + - 0.140625 + - 0.1484375 + - 0.15625 + - 0.1640625 + - 0.171875 + - 0.1796875 + - 0.1875 + - 0.1953125 + - 0.203125 + - 0.2109375 + - 0.21875 + - 0.2265625 + - 0.234375 + - 0.2421875 + - 0.25 + - 0.2578125 + - 0.265625 + - 0.2734375 + - 0.28125 + - 0.2890625 + - 0.296875 + - 0.3046875 + - 0.3125 + - 0.3203125 + - 0.328125 + - 0.3359375 + - 0.34375 + - 0.3515625 + - 0.359375 + - 0.3671875 + - 0.375 + - 0.3828125 + - 0.390625 + - 0.3984375 + - 0.40625 + - 0.4140625 + - 0.421875 + - 0.4296875 + - 0.4375 + - 0.4453125 + - 0.453125 + - 0.4609375 + - 0.46875 + - 0.4765625 + - 0.484375 + - 0.4921875 + - 0.5 + - 0.5078125 + - 0.515625 + - 0.5234375 + - 0.53125 + - 0.5390625 + - 0.546875 + - 0.5546875 + - 0.5625 + - 0.5703125 + - 0.578125 + - 0.5859375 + - 0.59375 + - 0.6015625 + - 0.609375 + - 0.6171875 + - 0.625 + - 0.6328125 + - 0.640625 + - 0.6484375 + - 0.65625 + - 0.6640625 + - 0.671875 + - 0.6796875 + - 0.6875 + - 0.6953125 + - 0.703125 + - 0.7109375 + - 0.71875 + - 0.7265625 + - 0.734375 + - 0.7421875 + - 0.75 + - 0.7578125 + - 0.765625 + - 0.7734375 + - 0.78125 + - 0.7890625 + - 0.796875 + - 0.8046875 + - 0.8125 + - 0.8203125 + - 0.828125 + - 0.8359375 + - 0.84375 + - 0.8515625 + - 0.859375 + - 0.8671875 + - 0.875 + - 0.8828125 + - 0.890625 + - 0.8984375 + - 0.90625 + - 0.9140625 + - 0.921875 + - 0.9296875 + - 0.9375 + - 0.9453125 + - 0.953125 + - 0.9609375 + - 0.96875 + - 0.9765625 + - 0.984375 + - 0.9921875 + redCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + cachedData: + - 0 + - 0.0078125 + - 0.015625 + - 0.0234375 + - 0.03125 + - 0.0390625 + - 0.046875 + - 0.0546875 + - 0.0625 + - 0.0703125 + - 0.078125 + - 0.0859375 + - 0.09375 + - 0.1015625 + - 0.109375 + - 0.1171875 + - 0.125 + - 0.1328125 + - 0.140625 + - 0.1484375 + - 0.15625 + - 0.1640625 + - 0.171875 + - 0.1796875 + - 0.1875 + - 0.1953125 + - 0.203125 + - 0.2109375 + - 0.21875 + - 0.2265625 + - 0.234375 + - 0.2421875 + - 0.25 + - 0.2578125 + - 0.265625 + - 0.2734375 + - 0.28125 + - 0.2890625 + - 0.296875 + - 0.3046875 + - 0.3125 + - 0.3203125 + - 0.328125 + - 0.3359375 + - 0.34375 + - 0.3515625 + - 0.359375 + - 0.3671875 + - 0.375 + - 0.3828125 + - 0.390625 + - 0.3984375 + - 0.40625 + - 0.4140625 + - 0.421875 + - 0.4296875 + - 0.4375 + - 0.4453125 + - 0.453125 + - 0.4609375 + - 0.46875 + - 0.4765625 + - 0.484375 + - 0.4921875 + - 0.5 + - 0.5078125 + - 0.515625 + - 0.5234375 + - 0.53125 + - 0.5390625 + - 0.546875 + - 0.5546875 + - 0.5625 + - 0.5703125 + - 0.578125 + - 0.5859375 + - 0.59375 + - 0.6015625 + - 0.609375 + - 0.6171875 + - 0.625 + - 0.6328125 + - 0.640625 + - 0.6484375 + - 0.65625 + - 0.6640625 + - 0.671875 + - 0.6796875 + - 0.6875 + - 0.6953125 + - 0.703125 + - 0.7109375 + - 0.71875 + - 0.7265625 + - 0.734375 + - 0.7421875 + - 0.75 + - 0.7578125 + - 0.765625 + - 0.7734375 + - 0.78125 + - 0.7890625 + - 0.796875 + - 0.8046875 + - 0.8125 + - 0.8203125 + - 0.828125 + - 0.8359375 + - 0.84375 + - 0.8515625 + - 0.859375 + - 0.8671875 + - 0.875 + - 0.8828125 + - 0.890625 + - 0.8984375 + - 0.90625 + - 0.9140625 + - 0.921875 + - 0.9296875 + - 0.9375 + - 0.9453125 + - 0.953125 + - 0.9609375 + - 0.96875 + - 0.9765625 + - 0.984375 + - 0.9921875 + greenCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + cachedData: + - 0 + - 0.0078125 + - 0.015625 + - 0.0234375 + - 0.03125 + - 0.0390625 + - 0.046875 + - 0.0546875 + - 0.0625 + - 0.0703125 + - 0.078125 + - 0.0859375 + - 0.09375 + - 0.1015625 + - 0.109375 + - 0.1171875 + - 0.125 + - 0.1328125 + - 0.140625 + - 0.1484375 + - 0.15625 + - 0.1640625 + - 0.171875 + - 0.1796875 + - 0.1875 + - 0.1953125 + - 0.203125 + - 0.2109375 + - 0.21875 + - 0.2265625 + - 0.234375 + - 0.2421875 + - 0.25 + - 0.2578125 + - 0.265625 + - 0.2734375 + - 0.28125 + - 0.2890625 + - 0.296875 + - 0.3046875 + - 0.3125 + - 0.3203125 + - 0.328125 + - 0.3359375 + - 0.34375 + - 0.3515625 + - 0.359375 + - 0.3671875 + - 0.375 + - 0.3828125 + - 0.390625 + - 0.3984375 + - 0.40625 + - 0.4140625 + - 0.421875 + - 0.4296875 + - 0.4375 + - 0.4453125 + - 0.453125 + - 0.4609375 + - 0.46875 + - 0.4765625 + - 0.484375 + - 0.4921875 + - 0.5 + - 0.5078125 + - 0.515625 + - 0.5234375 + - 0.53125 + - 0.5390625 + - 0.546875 + - 0.5546875 + - 0.5625 + - 0.5703125 + - 0.578125 + - 0.5859375 + - 0.59375 + - 0.6015625 + - 0.609375 + - 0.6171875 + - 0.625 + - 0.6328125 + - 0.640625 + - 0.6484375 + - 0.65625 + - 0.6640625 + - 0.671875 + - 0.6796875 + - 0.6875 + - 0.6953125 + - 0.703125 + - 0.7109375 + - 0.71875 + - 0.7265625 + - 0.734375 + - 0.7421875 + - 0.75 + - 0.7578125 + - 0.765625 + - 0.7734375 + - 0.78125 + - 0.7890625 + - 0.796875 + - 0.8046875 + - 0.8125 + - 0.8203125 + - 0.828125 + - 0.8359375 + - 0.84375 + - 0.8515625 + - 0.859375 + - 0.8671875 + - 0.875 + - 0.8828125 + - 0.890625 + - 0.8984375 + - 0.90625 + - 0.9140625 + - 0.921875 + - 0.9296875 + - 0.9375 + - 0.9453125 + - 0.953125 + - 0.9609375 + - 0.96875 + - 0.9765625 + - 0.984375 + - 0.9921875 + blueCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + cachedData: + - 0 + - 0.0078125 + - 0.015625 + - 0.0234375 + - 0.03125 + - 0.0390625 + - 0.046875 + - 0.0546875 + - 0.0625 + - 0.0703125 + - 0.078125 + - 0.0859375 + - 0.09375 + - 0.1015625 + - 0.109375 + - 0.1171875 + - 0.125 + - 0.1328125 + - 0.140625 + - 0.1484375 + - 0.15625 + - 0.1640625 + - 0.171875 + - 0.1796875 + - 0.1875 + - 0.1953125 + - 0.203125 + - 0.2109375 + - 0.21875 + - 0.2265625 + - 0.234375 + - 0.2421875 + - 0.25 + - 0.2578125 + - 0.265625 + - 0.2734375 + - 0.28125 + - 0.2890625 + - 0.296875 + - 0.3046875 + - 0.3125 + - 0.3203125 + - 0.328125 + - 0.3359375 + - 0.34375 + - 0.3515625 + - 0.359375 + - 0.3671875 + - 0.375 + - 0.3828125 + - 0.390625 + - 0.3984375 + - 0.40625 + - 0.4140625 + - 0.421875 + - 0.4296875 + - 0.4375 + - 0.4453125 + - 0.453125 + - 0.4609375 + - 0.46875 + - 0.4765625 + - 0.484375 + - 0.4921875 + - 0.5 + - 0.5078125 + - 0.515625 + - 0.5234375 + - 0.53125 + - 0.5390625 + - 0.546875 + - 0.5546875 + - 0.5625 + - 0.5703125 + - 0.578125 + - 0.5859375 + - 0.59375 + - 0.6015625 + - 0.609375 + - 0.6171875 + - 0.625 + - 0.6328125 + - 0.640625 + - 0.6484375 + - 0.65625 + - 0.6640625 + - 0.671875 + - 0.6796875 + - 0.6875 + - 0.6953125 + - 0.703125 + - 0.7109375 + - 0.71875 + - 0.7265625 + - 0.734375 + - 0.7421875 + - 0.75 + - 0.7578125 + - 0.765625 + - 0.7734375 + - 0.78125 + - 0.7890625 + - 0.796875 + - 0.8046875 + - 0.8125 + - 0.8203125 + - 0.828125 + - 0.8359375 + - 0.84375 + - 0.8515625 + - 0.859375 + - 0.8671875 + - 0.875 + - 0.8828125 + - 0.890625 + - 0.8984375 + - 0.90625 + - 0.9140625 + - 0.921875 + - 0.9296875 + - 0.9375 + - 0.9453125 + - 0.953125 + - 0.9609375 + - 0.96875 + - 0.9765625 + - 0.984375 + - 0.9921875 + hueVsHueCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 1 + m_ZeroValue: 0.5 + m_Range: 1 + cachedData: + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + hueVsSatCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 1 + m_ZeroValue: 0.5 + m_Range: 1 + cachedData: + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + satVsSatCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0.5 + m_Range: 1 + cachedData: + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + lumVsSatCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0.5 + m_Range: 1 + cachedData: + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8e6292b2c06870d4495f009f912b9600, type: 3} + m_Name: MKI + m_EditorClassIdentifier: + settings: + - {fileID: -1078162056846046502} + - {fileID: -1077635151841488244} + - {fileID: -6112993174774086776} + - {fileID: 9089003537506517556} + - {fileID: 869989931153879754} + - {fileID: 4375730050868664868} + - {fileID: -829873319278908013} +--- !u!114 &869989931153879754 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c1cb7e9e120078f43bce4f0b1be547a7, type: 3} + m_Name: AmbientOcclusion + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + mode: + overrideState: 1 + value: 0 + intensity: + overrideState: 1 + value: 0.646 + color: + overrideState: 1 + value: {r: 0.16037738, g: 0.16037738, b: 0.16037738, a: 1} + ambientOnly: + overrideState: 1 + value: 0 + noiseFilterTolerance: + overrideState: 0 + value: 0 + blurTolerance: + overrideState: 0 + value: -4.6 + upsampleTolerance: + overrideState: 0 + value: -12 + thicknessModifier: + overrideState: 1 + value: 1 + directLightingStrength: + overrideState: 0 + value: 0 + radius: + overrideState: 1 + value: 1 + quality: + overrideState: 1 + value: 2 +--- !u!114 &4375730050868664868 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 40b924e2dad56384a8df2a1e111bb675, type: 3} + m_Name: Vignette + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + mode: + overrideState: 1 + value: 0 + color: + overrideState: 1 + value: {r: 0, g: 0, b: 0, a: 1} + center: + overrideState: 1 + value: {x: 0.5, y: 0.5} + intensity: + overrideState: 1 + value: 0.434 + smoothness: + overrideState: 1 + value: 0.325 + roundness: + overrideState: 0 + value: 1 + rounded: + overrideState: 0 + value: 0 + mask: + overrideState: 1 + value: {fileID: 10916, guid: 0000000000000000f000000000000000, type: 0} + defaultState: 1 + opacity: + overrideState: 1 + value: 0.51 +--- !u!114 &9089003537506517556 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d65e486e4de6e5448a8fbb43dc8756a0, type: 3} + m_Name: Grain + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + colored: + overrideState: 0 + value: 0 + intensity: + overrideState: 1 + value: 0.121 + size: + overrideState: 1 + value: 0.41 + lumContrib: + overrideState: 0 + value: 0 diff --git a/Assets/Content/PostProcessing/MKI.asset.meta b/Assets/Content/PostProcessing/MKI.asset.meta new file mode 100644 index 0000000000..ffaa301ec9 --- /dev/null +++ b/Assets/Content/PostProcessing/MKI.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ae1cfeacc4e7ea74fa76aad23a44eebb +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 11400000 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Content/PostProcessing/MKII.asset b/Assets/Content/PostProcessing/MKII.asset new file mode 100644 index 0000000000..9eb979e4a1 --- /dev/null +++ b/Assets/Content/PostProcessing/MKII.asset @@ -0,0 +1,1549 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &-8772394924139765831 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: adb84e30e02715445aeb9959894e3b4d, type: 3} + m_Name: ColorGrading + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + gradingMode: + overrideState: 0 + value: 1 + externalLut: + overrideState: 0 + value: {fileID: 0} + defaultState: 1 + tonemapper: + overrideState: 1 + value: 3 + toneCurveToeStrength: + overrideState: 1 + value: 0.031 + toneCurveToeLength: + overrideState: 1 + value: 0.409 + toneCurveShoulderStrength: + overrideState: 1 + value: 1 + toneCurveShoulderLength: + overrideState: 1 + value: 0.68 + toneCurveShoulderAngle: + overrideState: 1 + value: 1 + toneCurveGamma: + overrideState: 0 + value: 0.95 + ldrLut: + overrideState: 0 + value: {fileID: 0} + defaultState: 4 + ldrLutContribution: + overrideState: 0 + value: 1 + temperature: + overrideState: 1 + value: -3.5 + tint: + overrideState: 1 + value: 2 + colorFilter: + overrideState: 1 + value: {r: 0.9339623, g: 0.8957181, b: 0.885502, a: 1} + hueShift: + overrideState: 0 + value: 0 + saturation: + overrideState: 1 + value: 10 + brightness: + overrideState: 0 + value: 0 + postExposure: + overrideState: 0 + value: 0 + contrast: + overrideState: 1 + value: 10 + mixerRedOutRedIn: + overrideState: 0 + value: 100 + mixerRedOutGreenIn: + overrideState: 0 + value: 0 + mixerRedOutBlueIn: + overrideState: 0 + value: 0 + mixerGreenOutRedIn: + overrideState: 0 + value: 0 + mixerGreenOutGreenIn: + overrideState: 0 + value: 100 + mixerGreenOutBlueIn: + overrideState: 0 + value: 0 + mixerBlueOutRedIn: + overrideState: 0 + value: 0 + mixerBlueOutGreenIn: + overrideState: 0 + value: 0 + mixerBlueOutBlueIn: + overrideState: 0 + value: 100 + lift: + overrideState: 0 + value: {x: 0.9994523, y: 1, z: 0.990432, w: 0} + gamma: + overrideState: 0 + value: {x: 1, y: 0.9954613, z: 0.9818456, w: -0.0000000027090348} + gain: + overrideState: 1 + value: {x: 1, y: 0.92738336, z: 0.9818458, w: 0.59919834} + masterCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + cachedData: + - 0 + - 0.0078125 + - 0.015625 + - 0.0234375 + - 0.03125 + - 0.0390625 + - 0.046875 + - 0.0546875 + - 0.0625 + - 0.0703125 + - 0.078125 + - 0.0859375 + - 0.09375 + - 0.1015625 + - 0.109375 + - 0.1171875 + - 0.125 + - 0.1328125 + - 0.140625 + - 0.1484375 + - 0.15625 + - 0.1640625 + - 0.171875 + - 0.1796875 + - 0.1875 + - 0.1953125 + - 0.203125 + - 0.2109375 + - 0.21875 + - 0.2265625 + - 0.234375 + - 0.2421875 + - 0.25 + - 0.2578125 + - 0.265625 + - 0.2734375 + - 0.28125 + - 0.2890625 + - 0.296875 + - 0.3046875 + - 0.3125 + - 0.3203125 + - 0.328125 + - 0.3359375 + - 0.34375 + - 0.3515625 + - 0.359375 + - 0.3671875 + - 0.375 + - 0.3828125 + - 0.390625 + - 0.3984375 + - 0.40625 + - 0.4140625 + - 0.421875 + - 0.4296875 + - 0.4375 + - 0.4453125 + - 0.453125 + - 0.4609375 + - 0.46875 + - 0.4765625 + - 0.484375 + - 0.4921875 + - 0.5 + - 0.5078125 + - 0.515625 + - 0.5234375 + - 0.53125 + - 0.5390625 + - 0.546875 + - 0.5546875 + - 0.5625 + - 0.5703125 + - 0.578125 + - 0.5859375 + - 0.59375 + - 0.6015625 + - 0.609375 + - 0.6171875 + - 0.625 + - 0.6328125 + - 0.640625 + - 0.6484375 + - 0.65625 + - 0.6640625 + - 0.671875 + - 0.6796875 + - 0.6875 + - 0.6953125 + - 0.703125 + - 0.7109375 + - 0.71875 + - 0.7265625 + - 0.734375 + - 0.7421875 + - 0.75 + - 0.7578125 + - 0.765625 + - 0.7734375 + - 0.78125 + - 0.7890625 + - 0.796875 + - 0.8046875 + - 0.8125 + - 0.8203125 + - 0.828125 + - 0.8359375 + - 0.84375 + - 0.8515625 + - 0.859375 + - 0.8671875 + - 0.875 + - 0.8828125 + - 0.890625 + - 0.8984375 + - 0.90625 + - 0.9140625 + - 0.921875 + - 0.9296875 + - 0.9375 + - 0.9453125 + - 0.953125 + - 0.9609375 + - 0.96875 + - 0.9765625 + - 0.984375 + - 0.9921875 + redCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + cachedData: + - 0 + - 0.0078125 + - 0.015625 + - 0.0234375 + - 0.03125 + - 0.0390625 + - 0.046875 + - 0.0546875 + - 0.0625 + - 0.0703125 + - 0.078125 + - 0.0859375 + - 0.09375 + - 0.1015625 + - 0.109375 + - 0.1171875 + - 0.125 + - 0.1328125 + - 0.140625 + - 0.1484375 + - 0.15625 + - 0.1640625 + - 0.171875 + - 0.1796875 + - 0.1875 + - 0.1953125 + - 0.203125 + - 0.2109375 + - 0.21875 + - 0.2265625 + - 0.234375 + - 0.2421875 + - 0.25 + - 0.2578125 + - 0.265625 + - 0.2734375 + - 0.28125 + - 0.2890625 + - 0.296875 + - 0.3046875 + - 0.3125 + - 0.3203125 + - 0.328125 + - 0.3359375 + - 0.34375 + - 0.3515625 + - 0.359375 + - 0.3671875 + - 0.375 + - 0.3828125 + - 0.390625 + - 0.3984375 + - 0.40625 + - 0.4140625 + - 0.421875 + - 0.4296875 + - 0.4375 + - 0.4453125 + - 0.453125 + - 0.4609375 + - 0.46875 + - 0.4765625 + - 0.484375 + - 0.4921875 + - 0.5 + - 0.5078125 + - 0.515625 + - 0.5234375 + - 0.53125 + - 0.5390625 + - 0.546875 + - 0.5546875 + - 0.5625 + - 0.5703125 + - 0.578125 + - 0.5859375 + - 0.59375 + - 0.6015625 + - 0.609375 + - 0.6171875 + - 0.625 + - 0.6328125 + - 0.640625 + - 0.6484375 + - 0.65625 + - 0.6640625 + - 0.671875 + - 0.6796875 + - 0.6875 + - 0.6953125 + - 0.703125 + - 0.7109375 + - 0.71875 + - 0.7265625 + - 0.734375 + - 0.7421875 + - 0.75 + - 0.7578125 + - 0.765625 + - 0.7734375 + - 0.78125 + - 0.7890625 + - 0.796875 + - 0.8046875 + - 0.8125 + - 0.8203125 + - 0.828125 + - 0.8359375 + - 0.84375 + - 0.8515625 + - 0.859375 + - 0.8671875 + - 0.875 + - 0.8828125 + - 0.890625 + - 0.8984375 + - 0.90625 + - 0.9140625 + - 0.921875 + - 0.9296875 + - 0.9375 + - 0.9453125 + - 0.953125 + - 0.9609375 + - 0.96875 + - 0.9765625 + - 0.984375 + - 0.9921875 + greenCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + cachedData: + - 0 + - 0.0078125 + - 0.015625 + - 0.0234375 + - 0.03125 + - 0.0390625 + - 0.046875 + - 0.0546875 + - 0.0625 + - 0.0703125 + - 0.078125 + - 0.0859375 + - 0.09375 + - 0.1015625 + - 0.109375 + - 0.1171875 + - 0.125 + - 0.1328125 + - 0.140625 + - 0.1484375 + - 0.15625 + - 0.1640625 + - 0.171875 + - 0.1796875 + - 0.1875 + - 0.1953125 + - 0.203125 + - 0.2109375 + - 0.21875 + - 0.2265625 + - 0.234375 + - 0.2421875 + - 0.25 + - 0.2578125 + - 0.265625 + - 0.2734375 + - 0.28125 + - 0.2890625 + - 0.296875 + - 0.3046875 + - 0.3125 + - 0.3203125 + - 0.328125 + - 0.3359375 + - 0.34375 + - 0.3515625 + - 0.359375 + - 0.3671875 + - 0.375 + - 0.3828125 + - 0.390625 + - 0.3984375 + - 0.40625 + - 0.4140625 + - 0.421875 + - 0.4296875 + - 0.4375 + - 0.4453125 + - 0.453125 + - 0.4609375 + - 0.46875 + - 0.4765625 + - 0.484375 + - 0.4921875 + - 0.5 + - 0.5078125 + - 0.515625 + - 0.5234375 + - 0.53125 + - 0.5390625 + - 0.546875 + - 0.5546875 + - 0.5625 + - 0.5703125 + - 0.578125 + - 0.5859375 + - 0.59375 + - 0.6015625 + - 0.609375 + - 0.6171875 + - 0.625 + - 0.6328125 + - 0.640625 + - 0.6484375 + - 0.65625 + - 0.6640625 + - 0.671875 + - 0.6796875 + - 0.6875 + - 0.6953125 + - 0.703125 + - 0.7109375 + - 0.71875 + - 0.7265625 + - 0.734375 + - 0.7421875 + - 0.75 + - 0.7578125 + - 0.765625 + - 0.7734375 + - 0.78125 + - 0.7890625 + - 0.796875 + - 0.8046875 + - 0.8125 + - 0.8203125 + - 0.828125 + - 0.8359375 + - 0.84375 + - 0.8515625 + - 0.859375 + - 0.8671875 + - 0.875 + - 0.8828125 + - 0.890625 + - 0.8984375 + - 0.90625 + - 0.9140625 + - 0.921875 + - 0.9296875 + - 0.9375 + - 0.9453125 + - 0.953125 + - 0.9609375 + - 0.96875 + - 0.9765625 + - 0.984375 + - 0.9921875 + blueCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + - serializedVersion: 3 + time: 1 + value: 1 + inSlope: 1 + outSlope: 1 + tangentMode: 0 + weightedMode: 0 + inWeight: 0 + outWeight: 0 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0 + m_Range: 1 + cachedData: + - 0 + - 0.0078125 + - 0.015625 + - 0.0234375 + - 0.03125 + - 0.0390625 + - 0.046875 + - 0.0546875 + - 0.0625 + - 0.0703125 + - 0.078125 + - 0.0859375 + - 0.09375 + - 0.1015625 + - 0.109375 + - 0.1171875 + - 0.125 + - 0.1328125 + - 0.140625 + - 0.1484375 + - 0.15625 + - 0.1640625 + - 0.171875 + - 0.1796875 + - 0.1875 + - 0.1953125 + - 0.203125 + - 0.2109375 + - 0.21875 + - 0.2265625 + - 0.234375 + - 0.2421875 + - 0.25 + - 0.2578125 + - 0.265625 + - 0.2734375 + - 0.28125 + - 0.2890625 + - 0.296875 + - 0.3046875 + - 0.3125 + - 0.3203125 + - 0.328125 + - 0.3359375 + - 0.34375 + - 0.3515625 + - 0.359375 + - 0.3671875 + - 0.375 + - 0.3828125 + - 0.390625 + - 0.3984375 + - 0.40625 + - 0.4140625 + - 0.421875 + - 0.4296875 + - 0.4375 + - 0.4453125 + - 0.453125 + - 0.4609375 + - 0.46875 + - 0.4765625 + - 0.484375 + - 0.4921875 + - 0.5 + - 0.5078125 + - 0.515625 + - 0.5234375 + - 0.53125 + - 0.5390625 + - 0.546875 + - 0.5546875 + - 0.5625 + - 0.5703125 + - 0.578125 + - 0.5859375 + - 0.59375 + - 0.6015625 + - 0.609375 + - 0.6171875 + - 0.625 + - 0.6328125 + - 0.640625 + - 0.6484375 + - 0.65625 + - 0.6640625 + - 0.671875 + - 0.6796875 + - 0.6875 + - 0.6953125 + - 0.703125 + - 0.7109375 + - 0.71875 + - 0.7265625 + - 0.734375 + - 0.7421875 + - 0.75 + - 0.7578125 + - 0.765625 + - 0.7734375 + - 0.78125 + - 0.7890625 + - 0.796875 + - 0.8046875 + - 0.8125 + - 0.8203125 + - 0.828125 + - 0.8359375 + - 0.84375 + - 0.8515625 + - 0.859375 + - 0.8671875 + - 0.875 + - 0.8828125 + - 0.890625 + - 0.8984375 + - 0.90625 + - 0.9140625 + - 0.921875 + - 0.9296875 + - 0.9375 + - 0.9453125 + - 0.953125 + - 0.9609375 + - 0.96875 + - 0.9765625 + - 0.984375 + - 0.9921875 + hueVsHueCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 1 + m_ZeroValue: 0.5 + m_Range: 1 + cachedData: + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + hueVsSatCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 1 + m_ZeroValue: 0.5 + m_Range: 1 + cachedData: + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + satVsSatCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0.5 + m_Range: 1 + cachedData: + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + lumVsSatCurve: + overrideState: 0 + value: + curve: + serializedVersion: 2 + m_Curve: [] + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + m_Loop: 0 + m_ZeroValue: 0.5 + m_Range: 1 + cachedData: + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 + - 0.5 +--- !u!114 &-7327114098737623468 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 40b924e2dad56384a8df2a1e111bb675, type: 3} + m_Name: Vignette + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + mode: + overrideState: 1 + value: 0 + color: + overrideState: 1 + value: {r: 0.4056604, g: 0.37265265, b: 0.36165008, a: 1} + center: + overrideState: 1 + value: {x: 0.5, y: 0.5} + intensity: + overrideState: 1 + value: 0.23 + smoothness: + overrideState: 1 + value: 0.325 + roundness: + overrideState: 0 + value: 1 + rounded: + overrideState: 0 + value: 0 + mask: + overrideState: 1 + value: {fileID: 10916, guid: 0000000000000000f000000000000000, type: 0} + defaultState: 1 + opacity: + overrideState: 1 + value: 0.51 +--- !u!114 &-3667644700740227502 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c1cb7e9e120078f43bce4f0b1be547a7, type: 3} + m_Name: AmbientOcclusion + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + mode: + overrideState: 1 + value: 0 + intensity: + overrideState: 1 + value: 0.361 + color: + overrideState: 1 + value: {r: 0.2924528, g: 0.29107332, b: 0.29107332, a: 1} + ambientOnly: + overrideState: 1 + value: 0 + noiseFilterTolerance: + overrideState: 0 + value: 0 + blurTolerance: + overrideState: 0 + value: -4.6 + upsampleTolerance: + overrideState: 0 + value: -12 + thicknessModifier: + overrideState: 1 + value: 1 + directLightingStrength: + overrideState: 0 + value: 0 + radius: + overrideState: 1 + value: 0.1 + quality: + overrideState: 1 + value: 3 +--- !u!114 &-1863598353081049653 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d65e486e4de6e5448a8fbb43dc8756a0, type: 3} + m_Name: Grain + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + colored: + overrideState: 0 + value: 0 + intensity: + overrideState: 1 + value: 0.2 + size: + overrideState: 1 + value: 0.49 + lumContrib: + overrideState: 1 + value: 1 +--- !u!114 &11400000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8e6292b2c06870d4495f009f912b9600, type: 3} + m_Name: MKII + m_EditorClassIdentifier: + settings: + - {fileID: 992875496375978482} + - {fileID: 8034718494255695068} + - {fileID: 1349907196049541760} + - {fileID: -1863598353081049653} + - {fileID: -3667644700740227502} + - {fileID: -7327114098737623468} + - {fileID: -8772394924139765831} +--- !u!114 &992875496375978482 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 48a79b01ea5641d4aa6daa2e23605641, type: 3} + m_Name: Bloom + m_EditorClassIdentifier: + active: 1 + enabled: + overrideState: 1 + value: 1 + intensity: + overrideState: 1 + value: 2.5 + threshold: + overrideState: 1 + value: 0.8 + softKnee: + overrideState: 1 + value: 0.542 + clamp: + overrideState: 1 + value: 1.68 + diffusion: + overrideState: 1 + value: 4 + anamorphicRatio: + overrideState: 0 + value: 0 + color: + overrideState: 0 + value: {r: 1, g: 1, b: 1, a: 1} + fastMode: + overrideState: 0 + value: 0 + dirtTexture: + overrideState: 0 + value: {fileID: 0} + defaultState: 1 + dirtIntensity: + overrideState: 0 + value: 0 +--- !u!114 &1349907196049541760 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 6050e2d5de785ce4d931e4dbdbf2d755, type: 3} + m_Name: ChromaticAberration + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + spectralLut: + overrideState: 0 + value: {fileID: 0} + defaultState: 1 + intensity: + overrideState: 1 + value: 0.21 + fastMode: + overrideState: 0 + value: 0 +--- !u!114 &8034718494255695068 +MonoBehaviour: + m_ObjectHideFlags: 3 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b94fcd11afffcb142908bfcb1e261fba, type: 3} + m_Name: MotionBlur + m_EditorClassIdentifier: + active: 0 + enabled: + overrideState: 1 + value: 1 + shutterAngle: + overrideState: 1 + value: 187.2 + sampleCount: + overrideState: 1 + value: 19 diff --git a/Assets/Content/PostProcessing/MKII.asset.meta b/Assets/Content/PostProcessing/MKII.asset.meta new file mode 100644 index 0000000000..246ea6dcfc --- /dev/null +++ b/Assets/Content/PostProcessing/MKII.asset.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5b44ecd1900b0eb418ef3238b1c87d36 +NativeFormatImporter: + externalObjects: {} + mainObjectFileID: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Content/Scenes/Game.unity b/Assets/Content/Scenes/Game.unity index aedd527c25..e175f00b89 100644 --- a/Assets/Content/Scenes/Game.unity +++ b/Assets/Content/Scenes/Game.unity @@ -238,8 +238,8 @@ MonoBehaviour: k__BackingField: [] SerializedTransformProperties: Position: {x: 0, y: 0, z: 0} - Rotation: {x: 0, y: 0, z: 0, w: 0} - LocalScale: {x: 0, y: 0, z: 0} + Rotation: {x: -0, y: -0, z: -0, w: 1} + LocalScale: {x: 1, y: 1, z: 1} _isNetworked: 1 _isGlobal: 0 _initializeOrder: 0 @@ -432,9 +432,9 @@ MonoBehaviour: k__BackingField: {fileID: 1506918116} k__BackingField: [] SerializedTransformProperties: - Position: {x: 0, y: 0, z: 0} - Rotation: {x: 0, y: 0, z: 0, w: 0} - LocalScale: {x: 0, y: 0, z: 0} + Position: {x: -662.0092, y: -384.96207, z: 137.6865} + Rotation: {x: -0, y: -0, z: -0, w: 1} + LocalScale: {x: 1, y: 1, z: 1} _isNetworked: 1 _isGlobal: 0 _initializeOrder: 0 @@ -499,8 +499,8 @@ MonoBehaviour: k__BackingField: [] SerializedTransformProperties: Position: {x: 0, y: 0, z: 0} - Rotation: {x: 0, y: 0, z: 0, w: 0} - LocalScale: {x: 0, y: 0, z: 0} + Rotation: {x: -0, y: -0, z: -0, w: 1} + LocalScale: {x: 1, y: 1, z: 1} _isNetworked: 1 _isGlobal: 0 _initializeOrder: 0 @@ -700,8 +700,8 @@ MonoBehaviour: k__BackingField: [] SerializedTransformProperties: Position: {x: 0, y: 0, z: 0} - Rotation: {x: 0, y: 0, z: 0, w: 0} - LocalScale: {x: 0, y: 0, z: 0} + Rotation: {x: -0, y: -0, z: -0, w: 1} + LocalScale: {x: 1, y: 1, z: 1} _isNetworked: 1 _isGlobal: 0 _initializeOrder: 0 @@ -785,8 +785,8 @@ MonoBehaviour: k__BackingField: [] SerializedTransformProperties: Position: {x: 0, y: 0, z: 0} - Rotation: {x: 0, y: 0, z: 0, w: 0} - LocalScale: {x: 0, y: 0, z: 0} + Rotation: {x: -0, y: -0, z: -0, w: 1} + LocalScale: {x: 1, y: 1, z: 1} _isNetworked: 1 _isGlobal: 0 _initializeOrder: 0 @@ -1155,8 +1155,8 @@ MonoBehaviour: k__BackingField: [] SerializedTransformProperties: Position: {x: 0, y: 0, z: 0} - Rotation: {x: 0, y: 0, z: 0, w: 0} - LocalScale: {x: 0, y: 0, z: 0} + Rotation: {x: 0, y: 0, z: 0, w: 1} + LocalScale: {x: 1, y: 1, z: 1} _isNetworked: 1 _isGlobal: 0 _initializeOrder: 0 @@ -1318,8 +1318,8 @@ MonoBehaviour: - {fileID: 878406322} SerializedTransformProperties: Position: {x: 0, y: 0, z: 0} - Rotation: {x: 0, y: 0, z: 0, w: 0} - LocalScale: {x: 0, y: 0, z: 0} + Rotation: {x: -0, y: -0, z: -0, w: 1} + LocalScale: {x: 1, y: 1, z: 1} _isNetworked: 1 _isGlobal: 0 _initializeOrder: 0 @@ -1439,7 +1439,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 4468402021075485018, guid: cc5383d385556f443b2a7d3202f2b2c1, type: 3} propertyPath: m_AnchoredPosition.y - value: -230.00003 + value: -230 objectReference: {fileID: 0} - target: {fileID: 4468402021449001342, guid: cc5383d385556f443b2a7d3202f2b2c1, type: 3} propertyPath: m_AnchoredPosition.x @@ -2004,9 +2004,9 @@ MonoBehaviour: - {fileID: 661652618} - {fileID: 1000564558} SerializedTransformProperties: - Position: {x: 0, y: 0, z: 0} - Rotation: {x: 0, y: 0, z: 0, w: 0} - LocalScale: {x: 0, y: 0, z: 0} + Position: {x: 698.9584, y: 414.30542, z: -44.10029} + Rotation: {x: 0, y: 0, z: 0, w: 1} + LocalScale: {x: 1, y: 1, z: 1} _isNetworked: 1 _isGlobal: 0 _initializeOrder: 0 @@ -2103,8 +2103,8 @@ MonoBehaviour: k__BackingField: [] SerializedTransformProperties: Position: {x: 0, y: 0, z: 0} - Rotation: {x: 0, y: 0, z: 0, w: 0} - LocalScale: {x: 0, y: 0, z: 0} + Rotation: {x: -0, y: -0, z: -0, w: 1} + LocalScale: {x: 1, y: 1, z: 1} _isNetworked: 1 _isGlobal: 0 _initializeOrder: 0 @@ -2115,17 +2115,6 @@ MonoBehaviour: _scenePathHash: 2499635508 k__BackingField: 10735852762284701941 k__BackingField: 0 ---- !u!114 &1677838619 stripped -MonoBehaviour: - m_CorrespondingSourceObject: {fileID: 7059085592882110939, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} - m_PrefabInstance: {fileID: 3810371244444567007} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 0} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 177da45823e2d1d458275216629c83cd, type: 3} - m_Name: - m_EditorClassIdentifier: --- !u!1 &1679380531 GameObject: m_ObjectHideFlags: 0 @@ -2216,8 +2205,8 @@ MonoBehaviour: k__BackingField: [] SerializedTransformProperties: Position: {x: 0, y: 0, z: 0} - Rotation: {x: 0, y: 0, z: 0, w: 0} - LocalScale: {x: 0, y: 0, z: 0} + Rotation: {x: -0, y: -0, z: -0, w: 1} + LocalScale: {x: 1, y: 1, z: 1} _isNetworked: 1 _isGlobal: 0 _initializeOrder: 0 @@ -3130,6 +3119,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 2314162496313497845, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2314162496313497845, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2314162496313497845, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2314162496313497845, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2314162496313497845, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 2527545844909297779, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} propertyPath: ClothingSlotPosition.Array.size value: 11 @@ -3170,6 +3179,30 @@ PrefabInstance: propertyPath: m_AnchorMin.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 3242409152173300344, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3242409152173300344, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3242409152173300344, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3242409152173300344, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3242409152173300344, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3242409152173300344, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 3640471949036544852, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} propertyPath: m_Size value: 1 @@ -3318,6 +3351,66 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 4394331957901036445, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4394331957901036445, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4394331957901036445, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4394331957901036445, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4394331957901036445, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4534603291001454609, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4534603291001454609, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4534603291001454609, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4534603291001454609, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4534603291001454609, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4606001282313738760, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4606001282313738760, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4606001282313738760, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4606001282313738760, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4606001282313738760, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 5535391432771639728, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -3513,7 +3606,7 @@ PrefabInstance: - target: {fileID: 8720228674029226883, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} propertyPath: _networkBehaviours.Array.data[2] value: - objectReference: {fileID: 1677838619} + objectReference: {fileID: 0} - target: {fileID: 8720228674029226883, guid: df2268f4f5f6669459174c6d7e2043ce, type: 3} propertyPath: _sceneNetworkObjects.Array.data[0] value: @@ -4066,38 +4159,6 @@ PrefabInstance: m_Modification: m_TransformParent: {fileID: 0} m_Modifications: - - target: {fileID: 1722473289467115438, guid: b904697874e9a0445ad5e0c9cad35c19, type: 3} - propertyPath: m_RenderingPath - value: -1 - objectReference: {fileID: 0} - - target: {fileID: 1722473289467115438, guid: b904697874e9a0445ad5e0c9cad35c19, type: 3} - propertyPath: m_BackGroundColor.a - value: 1 - objectReference: {fileID: 0} - - target: {fileID: 1722473289467115438, guid: b904697874e9a0445ad5e0c9cad35c19, type: 3} - propertyPath: m_BackGroundColor.b - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1722473289467115438, guid: b904697874e9a0445ad5e0c9cad35c19, type: 3} - propertyPath: m_BackGroundColor.g - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 1722473289467115438, guid: b904697874e9a0445ad5e0c9cad35c19, type: 3} - propertyPath: m_BackGroundColor.r - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4289864105790394890, guid: b904697874e9a0445ad5e0c9cad35c19, type: 3} - propertyPath: _display - value: - objectReference: {fileID: 0} - - target: {fileID: 4289864105790394890, guid: b904697874e9a0445ad5e0c9cad35c19, type: 3} - propertyPath: DebugMode - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 4559952172929818808, guid: b904697874e9a0445ad5e0c9cad35c19, type: 3} - propertyPath: m_Enabled - value: 1 - objectReference: {fileID: 0} - target: {fileID: 4559952172929818810, guid: b904697874e9a0445ad5e0c9cad35c19, type: 3} propertyPath: m_Name value: Player Camera @@ -4146,10 +4207,10 @@ PrefabInstance: propertyPath: m_LocalEulerAnglesHint.z value: 0 objectReference: {fileID: 0} - - target: {fileID: 8609354537043388887, guid: b904697874e9a0445ad5e0c9cad35c19, type: 3} - propertyPath: m_IsActive - value: 1 - objectReference: {fileID: 0} + - target: {fileID: 5495296496577650366, guid: b904697874e9a0445ad5e0c9cad35c19, type: 3} + propertyPath: sharedProfile + value: + objectReference: {fileID: 11400000, guid: ae1cfeacc4e7ea74fa76aad23a44eebb, type: 2} m_RemovedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: b904697874e9a0445ad5e0c9cad35c19, type: 3} --- !u!1001 &4601163164975837668 diff --git a/Assets/Content/Systems/Lobby/PlayerCamera.prefab b/Assets/Content/Systems/Lobby/PlayerCamera.prefab index 088e6c959e..8ce2e86180 100644 --- a/Assets/Content/Systems/Lobby/PlayerCamera.prefab +++ b/Assets/Content/Systems/Lobby/PlayerCamera.prefab @@ -11,14 +11,14 @@ GameObject: - component: {fileID: 4559952172929818815} - component: {fileID: 4559952172929818808} - component: {fileID: 4559952172929818813} - - component: {fileID: 4559952172929818814} - component: {fileID: 4559952172929818812} - component: {fileID: 4559952172929818819} - component: {fileID: 4559952172929818818} + - component: {fileID: 665743248} m_Layer: 0 m_Name: PlayerCamera m_TagString: MainCamera - m_Icon: {fileID: 2800000, guid: b82c2763e6020764383479a9e93ea947, type: 3} + m_Icon: {fileID: 2800000, guid: 5edcd81f955f72a45862d88963120b47, type: 3} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 m_IsActive: 1 @@ -29,16 +29,17 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 4559952172929818810} - m_LocalRotation: {x: 0.112883106, y: -0.88546485, z: 0.28883517, w: 0.34609795} + m_LocalRotation: {x: 0.1128803, y: -0.8854651, z: 0.28883848, w: 0.34609526} m_LocalPosition: {x: 4.7740602, y: 105.080505, z: 105.45852} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: - {fileID: 6325877698441558181} - {fileID: 7974284775202630507} + - {fileID: 8162310529773658926} m_Father: {fileID: 0} m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 9.7, y: -0.49, z: 0} + m_LocalEulerAnglesHint: {x: 36.132, y: -137.302, z: 0.002} --- !u!20 &4559952172929818808 Camera: m_ObjectHideFlags: 0 @@ -49,7 +50,7 @@ Camera: m_Enabled: 1 serializedVersion: 2 m_ClearFlags: 1 - m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0} m_projectionMatrixMode: 1 m_GateFitMode: 2 m_FOVAxisMode: 0 @@ -71,7 +72,7 @@ Camera: m_CullingMask: serializedVersion: 2 m_Bits: 4294967295 - m_RenderingPath: -1 + m_RenderingPath: 3 m_TargetTexture: {fileID: 0} m_TargetDisplay: 0 m_TargetEye: 3 @@ -142,23 +143,6 @@ MonoBehaviour: m_BeforeTransparentBundles: [] m_BeforeStackBundles: [] m_AfterStackBundles: [] ---- !u!114 &4559952172929818814 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4559952172929818810} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} - m_Name: - m_EditorClassIdentifier: - sharedProfile: {fileID: 11400000, guid: c0ba4991830f8cb4ebe7a584b0717f7c, type: 2} - isGlobal: 1 - blendDistance: 0 - weight: 1 - priority: 0 --- !u!114 &4559952172929818812 MonoBehaviour: m_ObjectHideFlags: 0 @@ -212,6 +196,42 @@ MonoBehaviour: _cameraDistance: 3 _horizontalAngle: 90 _verticalAngle: 60 +--- !u!114 &665743248 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4559952172929818810} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: e5720f3e4091d5649966a31a0c9adc84, type: 3} + m_Name: + m_EditorClassIdentifier: + rotationCount: 4 + stepCount: 16 + radius: 3.5 + expStart: 1 + expFactor: 1 + jitterSamples: 1 + GIBoost: 20 + lightBufferHDR: 0 + lightBufferResolution: 2 + LnDlOffset: 0 + nDlOffset: 0 + power: 1.5 + thickness: 10 + falloff: 1 + multiBounceAO: 0 + directLightingAO: 0 + fallbackMethod: 0 + cubemapFallback: {fileID: 0} + resolutionDownscale: 2 + reuseCount: 5 + temporalEnabled: 1 + temporalResponse: 0.35 + debugMode: 7 + lightOnly: 0 --- !u!1 &6076100242948381278 GameObject: m_ObjectHideFlags: 0 @@ -266,6 +286,56 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: _listener: {fileID: 5659394821902966807} + _listenerTarget: {fileID: 0} +--- !u!1 &6266872199481585469 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 8162310529773658926} + - component: {fileID: 5495296496577650366} + m_Layer: 0 + m_Name: PostProcessing + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &8162310529773658926 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6266872199481585469} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 4559952172929818815} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!114 &5495296496577650366 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6266872199481585469} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 8b9a305e18de0c04dbd257a21cd47087, type: 3} + m_Name: + m_EditorClassIdentifier: + sharedProfile: {fileID: 11400000, guid: ae1cfeacc4e7ea74fa76aad23a44eebb, type: 2} + isGlobal: 1 + blendDistance: 0 + weight: 1 + priority: 0 --- !u!1 &8609354537043388887 GameObject: m_ObjectHideFlags: 0 @@ -309,7 +379,7 @@ Camera: m_Enabled: 1 serializedVersion: 2 m_ClearFlags: 2 - m_BackGroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackGroundColor: {r: 0, g: 0, b: 0, a: 1} m_projectionMatrixMode: 1 m_GateFitMode: 2 m_FOVAxisMode: 0 @@ -331,7 +401,7 @@ Camera: m_CullingMask: serializedVersion: 2 m_Bits: 4294967295 - m_RenderingPath: 1 + m_RenderingPath: -1 m_TargetTexture: {fileID: 0} m_TargetDisplay: 0 m_TargetEye: 3 diff --git a/Assets/Content/WorldObjects/Structures/WallMounts/Lights/LightBulbFixture.prefab b/Assets/Content/WorldObjects/Structures/WallMounts/Lights/LightBulbFixture.prefab index 86fbd54eb6..0eb6980005 100644 --- a/Assets/Content/WorldObjects/Structures/WallMounts/Lights/LightBulbFixture.prefab +++ b/Assets/Content/WorldObjects/Structures/WallMounts/Lights/LightBulbFixture.prefab @@ -127,9 +127,103 @@ Light: m_Type: 0 m_Shape: 0 m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 2 + m_Range: 8 + m_SpotAngle: 120 + m_InnerSpotAngle: 1 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &679628777087280158 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9134361275171362942} + - component: {fileID: 7857000141688057579} + m_Layer: 0 + m_Name: SpotLight (001) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9134361275171362942 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 679628777087280158} + m_LocalRotation: {x: 0.2588191, y: 0, z: 0, w: 0.9659258} + m_LocalPosition: {x: -0.00000011920929, y: 2.3317568, z: 0.28518963} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5737010110918057389} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 30, y: 0, z: 0} +--- !u!108 &7857000141688057579 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 679628777087280158} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 2 + m_Shape: 0 + m_Color: {r: 1, g: 1, b: 1, a: 1} m_Intensity: 1 - m_Range: 20 - m_SpotAngle: 150 + m_Range: 5 + m_SpotAngle: 120 m_InnerSpotAngle: 1 m_CookieSize: 10 m_Shadows: @@ -210,6 +304,7 @@ Transform: m_Children: - {fileID: 5312759113881067057} - {fileID: 605597596295485441} + - {fileID: 9134361275171362942} m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/Assets/Content/WorldObjects/Structures/WallMounts/Lights/LightTubeFixture.prefab b/Assets/Content/WorldObjects/Structures/WallMounts/Lights/LightTubeFixture.prefab index 83277dfc9a..d903843aa6 100644 --- a/Assets/Content/WorldObjects/Structures/WallMounts/Lights/LightTubeFixture.prefab +++ b/Assets/Content/WorldObjects/Structures/WallMounts/Lights/LightTubeFixture.prefab @@ -44,9 +44,103 @@ Light: m_Type: 0 m_Shape: 0 m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Intensity: 2 + m_Range: 8 + m_SpotAngle: 120 + m_InnerSpotAngle: 1 + m_CookieSize: 10 + m_Shadows: + m_Type: 0 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_CullingMatrixOverride: + e00: 1 + e01: 0 + e02: 0 + e03: 0 + e10: 0 + e11: 1 + e12: 0 + e13: 0 + e20: 0 + e21: 0 + e22: 1 + e23: 0 + e30: 0 + e31: 0 + e32: 0 + e33: 1 + m_UseCullingMatrixOverride: 0 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingLayerMask: 1 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0} + m_UseBoundingSphereOverride: 0 + m_UseViewFrustumForShadowCasterCull: 1 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!1 &2551893448028176583 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 9127917919670043405} + - component: {fileID: 463869324462935363} + m_Layer: 0 + m_Name: SpotLight (001) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!4 &9127917919670043405 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2551893448028176583} + m_LocalRotation: {x: 0.2588191, y: 0, z: 0, w: 0.9659258} + m_LocalPosition: {x: -0.00000011920929, y: 2.3317568, z: 0.28518963} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 5737010110918057389} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 30, y: 0, z: 0} +--- !u!108 &463869324462935363 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2551893448028176583} + m_Enabled: 1 + serializedVersion: 10 + m_Type: 2 + m_Shape: 0 + m_Color: {r: 1, g: 1, b: 1, a: 1} m_Intensity: 1 - m_Range: 19.9 - m_SpotAngle: 150 + m_Range: 5 + m_SpotAngle: 120 m_InnerSpotAngle: 1 m_CookieSize: 10 m_Shadows: @@ -127,6 +221,7 @@ Transform: m_Children: - {fileID: 5312759113881067057} - {fileID: 605597596295485441} + - {fileID: 9127917919670043405} m_Father: {fileID: 0} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -406,7 +501,7 @@ MeshRenderer: m_Enabled: 1 m_CastShadows: 0 m_ReceiveShadows: 1 - m_DynamicOccludee: 1 + m_DynamicOccludee: 0 m_StaticShadowCaster: 0 m_MotionVectors: 1 m_LightProbeUsage: 1 diff --git a/Assets/Content/WorldObjects/World/Materials/Palette.mat b/Assets/Content/WorldObjects/World/Materials/Palette.mat index 6400e44c8c..582029838c 100644 --- a/Assets/Content/WorldObjects/World/Materials/Palette.mat +++ b/Assets/Content/WorldObjects/World/Materials/Palette.mat @@ -8,7 +8,7 @@ Material: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: Palette - m_Shader: {fileID: 4800000, guid: 7cd5de0b884b14f88ab763ef465e1799, type: 3} + m_Shader: {fileID: 4800000, guid: b41d78ce99261834088617809031d0bd, type: 3} m_ValidKeywords: [] m_InvalidKeywords: - _GLOSSYREFLECTIONS_OFF @@ -47,6 +47,14 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _LightTexture0: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} + - _LightTextureB0: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _MainTex: m_Texture: {fileID: 2800000, guid: 133dea153b15ed1418cfbadaf99ba3e1, type: 3} m_Scale: {x: 1, y: 1} @@ -63,6 +71,10 @@ Material: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} m_Offset: {x: 0, y: 0} + - _ShadowMapTexture: + m_Texture: {fileID: 0} + m_Scale: {x: 1, y: 1} + m_Offset: {x: 0, y: 0} - _SpecGlossMap: m_Texture: {fileID: 0} m_Scale: {x: 1, y: 1} diff --git a/Assets/Content/WorldObjects/World/Materials/PaletteEmission.mat b/Assets/Content/WorldObjects/World/Materials/PaletteEmission.mat index 4ce0763a71..29cd28da59 100644 --- a/Assets/Content/WorldObjects/World/Materials/PaletteEmission.mat +++ b/Assets/Content/WorldObjects/World/Materials/PaletteEmission.mat @@ -8,14 +8,14 @@ Material: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: PaletteEmission - m_Shader: {fileID: 4800000, guid: 7cd5de0b884b14f88ab763ef465e1799, type: 3} - m_ValidKeywords: [] - m_InvalidKeywords: + m_Shader: {fileID: 46, guid: 0000000000000000f000000000000000, type: 0} + m_ValidKeywords: - _EMISSION - _GLOSSYREFLECTIONS_OFF - - _SEGMENTED_ON - _SPECULARHIGHLIGHTS_OFF - m_LightmapFlags: 2 + m_InvalidKeywords: + - _SEGMENTED_ON + m_LightmapFlags: 1 m_EnableInstancingVariants: 1 m_DoubleSidedGI: 0 m_CustomRenderQueue: -1 @@ -105,7 +105,7 @@ Material: m_Colors: - _Color: {r: 1, g: 1, b: 1, a: 1} - _Emission: {r: 0, g: 0, b: 0, a: 0} - - _EmissionColor: {r: 0.0007314645, g: 0.0007314645, b: 0.0007314645, a: 1} + - _EmissionColor: {r: 2, g: 2, b: 2, a: 1} - _ShnColor: {r: 1, g: 1, b: 0, a: 1} - _SpecColor: {r: 0.2, g: 0.2, b: 0.2, a: 1} m_BuildTextureStacks: [] diff --git a/Assets/Scripts/External/SSRT.meta b/Assets/Scripts/External/SSRT.meta new file mode 100644 index 0000000000..a5dd2bf22f --- /dev/null +++ b/Assets/Scripts/External/SSRT.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a6f7774b286d14f4f9819043fce5c1c3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/External/SSRT/LICENSE b/Assets/Scripts/External/SSRT/LICENSE new file mode 100644 index 0000000000..15b82bac4a --- /dev/null +++ b/Assets/Scripts/External/SSRT/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 CDRIN + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/Assets/Scripts/External/SSRT/LICENSE.meta b/Assets/Scripts/External/SSRT/LICENSE.meta new file mode 100644 index 0000000000..c556de4a9e --- /dev/null +++ b/Assets/Scripts/External/SSRT/LICENSE.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: fe3b1e2b9addd2b4dabc7b41a668071f +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/External/SSRT/Scripts.meta b/Assets/Scripts/External/SSRT/Scripts.meta new file mode 100644 index 0000000000..1dc71435cf --- /dev/null +++ b/Assets/Scripts/External/SSRT/Scripts.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e84f81e635d53dc44b488446f3b0b1b7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/External/SSRT/Scripts/SSRT.cs b/Assets/Scripts/External/SSRT/Scripts/SSRT.cs new file mode 100644 index 0000000000..77c8e15814 --- /dev/null +++ b/Assets/Scripts/External/SSRT/Scripts/SSRT.cs @@ -0,0 +1,433 @@ +// SSRT. Copyright (c) 2019 CDRIN. MIT license (see LICENSE file) + +using UnityEngine; +using UnityEngine.Rendering; + +[RequireComponent(typeof(Camera))] +public class SSRT : MonoBehaviour +{ + #region Properties + public enum DebugMode { AO = RenderPass.DebugModeAO, BentNormal = RenderPass.DebugModeBentNormal, GI = RenderPass.DebugModeGI, Combined = RenderPass.DebugModeCombined } + public enum FallbackMethod { Off = 0, StaticIrradianceCubemap = 1, DynamicCubemap = 2} + public enum ResolutionDownscale { Full = 1, Half = 2, Quarter = 4, Eight = 8 } + public enum RenderPass { SSRT = 0, Upsample = 1, SampleReuse = 2, TemporalReproj = 3, DebugModeAO = 4, DebugModeBentNormal = 5, DebugModeGI = 6, + DebugModeCombined = 7, GetDepth = 8, GetNormal = 9, GetLightmask = 10, CopyLightmask = 11 } + + public readonly string version = "1.0.0"; + + [Header("Sampling")] + [Tooltip("Number of directionnal rotations applied during sampling.")] + [Range(1, 4)] + public int rotationCount = 4; + [Tooltip("Number of samples taken along one edge of the current conic slice.")] + [Range(1, 16)] + public int stepCount = 8; + [Tooltip("Effective sampling radius in world space. AO and GI can only have influence within that radius.")] + [Range(1, 25)] + public float radius = 3.5f; + [Tooltip("Controls samples distribution. Exp Start is an initial multiplier on the step size, and Exp Factor is an exponent applied at each step. By using a start value < 1, and an exponent > 1, it's possible to get exponential step size.")] + [Range(0.1f, 1)] + public float expStart = 1f; + [Tooltip("Controls samples distribution. Exp Start is an initial multiplier on the step size, and Exp Factor is an exponent applied at each step. By using a start value < 1, and an exponent > 1, it's possible to get exponential step size.")] + [Range(1, 2)] + public float expFactor = 1f; + [Tooltip("Applies some noise on sample positions to hide the banding artifacts that can occur when there is undersampling.")] + public bool jitterSamples = true; + + [Header("GI")] + [Tooltip("Intensity of the indirect diffuse light.")] + [Range(0, 75)] + public float GIBoost = 20; + [Tooltip("Using an HDR light buffer gives more accurate lighting but have an impact on performances.")] + public bool lightBufferHDR = false; + [Tooltip("Using lower resolution light buffer can help performances but can accentuate aliasing.")] + public ResolutionDownscale lightBufferResolution = ResolutionDownscale.Half; + [Tooltip("Bypass the dot(lightNormal, lightDirection) weighting.")] + [Range(0, 1)] + public float LnDlOffset = 0.0f; + [Tooltip("Bypass the dot(normal, lightDirection) weighting.")] + [Range(0, 1)] + public float nDlOffset = 0.0f; + + [Header("Occlusion")] + [Tooltip("Power function applied to AO to make it appear darker/lighter.")] + [Range(1, 8)] + public float power = 1.5f; + [Tooltip("Constant thickness value of objects on the screen in world space. Is used to ignore occlusion past that thickness level, as if light can travel behind the object.")] + [Range(0.1f, 10)] + public float thickness = 10f; + [Tooltip("Occlusion falloff relative to distance.")] + [Range(1, 50)] + public float falloff = 1f; + [Tooltip("Multi-Bounce analytic approximation from GTAO.")] + public bool multiBounceAO = false; + [Tooltip("Composite AO also on direct lighting.")] + public bool directLightingAO = false; + + [Header("Offscreen Fallback")] + [Tooltip("Ambient lighting to use. Off uses the Unity ambient lighting, but it's possible to use instead a static irradiance cubemap (pre-convolved), or render a cubemap around camera every frame (expensive).")] + public FallbackMethod fallbackMethod = FallbackMethod.Off; + [Tooltip("Static irradiance cubemap to use if it's the chosen fallback.")] + public Cubemap cubemapFallback; + + [Header("Filters")] + [Tooltip("The resolution at which SSRT is computed. If lower than fullscreen the effect will be upscaled to fullscreen afterwards. Lower resolution can help performances but can also introduce more flickering/aliasing.")] + public ResolutionDownscale resolutionDownscale = ResolutionDownscale.Half; + [Tooltip("Number of neighbor pixel to reuse (helps reduce noise).")] + [Range(1, 8)] + public int reuseCount = 5; + [Tooltip("Enable/Disable temporal reprojection")] + public bool temporalEnabled = true; + [Tooltip("Controls the speed of the accumulation, slower accumulation is more effective at removing noise but can introduce ghosting.")] + [Range(0, 1)] + public float temporalResponse = 0.35f; + + [Header("Debug Mode")] + [Tooltip("View of the different SSRT buffers for debug purposes.")] + public DebugMode debugMode = DebugMode.Combined; + [Tooltip("If enabled will show only the radiance that affects the surface, if unchecked radiance will be multiplied by surface albedo.")] + public bool lightOnly = false; + #endregion + + #region Rendering + void GenerateCommandBuffers() + { + ssrtBuffer.Clear(); + storeAmbientBuffer.Clear(); + clearBuffer.Clear(); + + //// Clear the main RT to avoid feedback loop (Before GBuffer) + clearBuffer.SetRenderTarget(BuiltinRenderTextureType.CameraTarget); + clearBuffer.ClearRenderTarget(false, true, Color.black); + + //// Store ambient color (before lighting) + storeAmbientBuffer.Blit(BuiltinRenderTextureType.CameraTarget, ambientTexture); + //// Remove ambient color from GBuffer3 (keep only direct lighting in lightmask) + storeAmbientBuffer.SetRenderTarget(BuiltinRenderTextureType.CameraTarget); + storeAmbientBuffer.ClearRenderTarget(false, true, Color.black); + + //// Store direct lighting + var cameraColorID = Shader.PropertyToID("_CameraTexture"); + ssrtBuffer.GetTemporaryRT(cameraColorID, (int)renderResolution.x, (int)renderResolution.y, 0, FilterMode.Point, RenderTextureFormat.DefaultHDR); + ssrtBuffer.Blit(BuiltinRenderTextureType.CameraTarget, cameraColorID); + + //// Lightmask generation: direct lighting + ambientTexture -> lightmask + var lightmaskID = Shader.PropertyToID("_LightmaskTexture"); + ssrtBuffer.GetTemporaryRT(lightmaskID, (int)renderResolution.x / (int)lightBufferResolution, (int)renderResolution.y / (int)lightBufferResolution, 0, FilterMode.Point, lightBufferHDR ? RenderTextureFormat.DefaultHDR : RenderTextureFormat.ARGB32); + ssrtBuffer.SetRenderTarget(lightmaskID); + ssrtBuffer.DrawMesh(mesh, Matrix4x4.identity, ssrtMaterial, 0, (int)RenderPass.GetLightmask); + + //// SSRT marching + RenderTargetIdentifier[] ssrtMrtID = { ssrtMrt[0] /* Bent Normals */, ssrtMrt[1] /* GIColorOcclusion */}; + ssrtBuffer.SetRenderTarget(ssrtMrtID, ssrtMrt[1] /* Useless */); + ssrtBuffer.DrawMesh(mesh, Matrix4x4.identity, ssrtMaterial, 0, (int)RenderPass.SSRT); + + var filterTexture1ID = Shader.PropertyToID("_FilterTexture1"); + ssrtBuffer.GetTemporaryRT(filterTexture1ID, (int)renderResolution.x, (int)renderResolution.y, 0, FilterMode.Point, RenderTextureFormat.DefaultHDR); + var filterTexture2ID = Shader.PropertyToID("_FilterTexture2"); + ssrtBuffer.GetTemporaryRT(filterTexture2ID, (int)renderResolution.x, (int)renderResolution.y, 0, FilterMode.Point, RenderTextureFormat.DefaultHDR); + + //// Bilateral Upsampling + if (resolutionDownscale != ResolutionDownscale.Full) + { + var currentDepthID = Shader.PropertyToID("_CurrentDepth"); + ssrtBuffer.GetTemporaryRT(currentDepthID, (int)renderResolution.x / (int)resolutionDownscale, (int)renderResolution.y / (int)resolutionDownscale, 0, FilterMode.Point, RenderTextureFormat.RFloat, RenderTextureReadWrite.Linear); + var currentNormalID = Shader.PropertyToID("_CurrentNormal"); + ssrtBuffer.GetTemporaryRT(currentNormalID, (int)renderResolution.x / (int)resolutionDownscale, (int)renderResolution.y / (int)resolutionDownscale, 0, FilterMode.Point, RenderTextureFormat.ARGBHalf, RenderTextureReadWrite.Linear); + + ssrtBuffer.SetRenderTarget(currentDepthID); + ssrtBuffer.DrawMesh(mesh, Matrix4x4.identity, ssrtMaterial, 0, (int)RenderPass.GetDepth); + + ssrtBuffer.SetRenderTarget(currentNormalID); + ssrtBuffer.DrawMesh(mesh, Matrix4x4.identity, ssrtMaterial, 0, (int)RenderPass.GetNormal); + + ssrtBuffer.SetRenderTarget(filterTexture1ID); + ssrtBuffer.DrawMesh(mesh, Matrix4x4.identity, ssrtMaterial, 0, (int)RenderPass.Upsample); + } + else + { + ssrtBuffer.Blit(ssrtMrt[1], filterTexture1ID); + } + + //// Reuse samples (filterTexture1ID -> filterTexture2ID -> filterTexture1ID) + if (reuseCount > 1) + { + ssrtBuffer.SetRenderTarget(filterTexture2ID); + ssrtBuffer.DrawMesh(mesh, Matrix4x4.identity, ssrtMaterial, 0, (int)RenderPass.SampleReuse); + ssrtBuffer.CopyTexture(filterTexture2ID, filterTexture1ID); + } + + //// Temporal filter (filterTexture1ID -> filterTexture2ID) + if (temporalEnabled) + { + ssrtBuffer.SetRenderTarget(filterTexture2ID); + ssrtBuffer.DrawMesh(mesh, Matrix4x4.identity, ssrtMaterial, 0, (int)RenderPass.TemporalReproj); + ssrtBuffer.Blit(filterTexture2ID, previousFrameTexture); + + ssrtBuffer.SetRenderTarget(previousDepthTexture); + ssrtBuffer.DrawMesh(mesh, Matrix4x4.identity, ssrtMaterial, 0, (int)RenderPass.GetDepth); + } + else + { + ssrtBuffer.Blit(filterTexture1ID, filterTexture2ID); + } + + //// Final composite pass + ssrtBuffer.SetRenderTarget(BuiltinRenderTextureType.CameraTarget); + ssrtBuffer.DrawMesh(mesh, Matrix4x4.identity, ssrtMaterial, 0, (int)debugMode); + + lastFrameViewProjectionMatrix = viewProjectionMatrix; + lastFrameInverseViewProjectionMatrix = viewProjectionMatrix.inverse; + } + + void UpdateVariables() + { + var worldToCameraMatrix = cam.worldToCameraMatrix; + ssrtMaterial.SetMatrix("_CameraToWorldMatrix", worldToCameraMatrix.inverse); + var projectionMatrix = GL.GetGPUProjectionMatrix(cam.projectionMatrix, false); + ssrtMaterial.SetMatrix("_InverseProjectionMatrix", projectionMatrix.inverse); + viewProjectionMatrix = projectionMatrix * worldToCameraMatrix; + ssrtMaterial.SetMatrix("_InverseViewProjectionMatrix", viewProjectionMatrix.inverse); + ssrtMaterial.SetMatrix("_LastFrameViewProjectionMatrix", lastFrameViewProjectionMatrix); + ssrtMaterial.SetMatrix("_LastFrameInverseViewProjectionMatrix", lastFrameInverseViewProjectionMatrix); + ssrtMaterial.SetInt("_RotationCount", rotationCount); + ssrtMaterial.SetInt("_StepCount", stepCount); + ssrtMaterial.SetFloat("_GIBoost", GIBoost); + ssrtMaterial.SetFloat("_LnDlOffset", LnDlOffset); + ssrtMaterial.SetFloat("_NDlOffset", nDlOffset); + ssrtMaterial.SetFloat("_Radius", radius); + ssrtMaterial.SetFloat("_ExpStart", expStart); + ssrtMaterial.SetFloat("_ExpFactor", expFactor); + ssrtMaterial.SetFloat("_Thickness", thickness); + ssrtMaterial.SetFloat("_Falloff", falloff); + ssrtMaterial.SetFloat("_Power", power); + ssrtMaterial.SetFloat("_TemporalResponse", temporalResponse); + ssrtMaterial.SetInt("_MultiBounceAO", multiBounceAO ? 1 : 0); + ssrtMaterial.SetFloat("_DirectLightingAO", directLightingAO ? 1 : 0); + ssrtMaterial.SetTexture("_CubemapFallback", cubemapFallback); + ssrtMaterial.SetInt("_FallbackMethod", (int)fallbackMethod); + ssrtMaterial.SetInt("_LightOnly", lightOnly ? 1 : 0); + ssrtMaterial.SetInt("_ReuseCount", reuseCount); + ssrtMaterial.SetInt("_JitterSamples", jitterSamples ? 1 : 0); + + float projScale; + projScale = (float)renderResolution.y / (Mathf.Tan(cam.fieldOfView * Mathf.Deg2Rad * 0.5f) * 2) * 0.5f; + ssrtMaterial.SetFloat("_HalfProjScale", projScale); + ssrtMaterial.SetInt("_ResolutionDownscale", (int)resolutionDownscale); + + // From Activision GTAO paper: https://www.activision.com/cdn/research/s2016_pbs_activision_occlusion.pptx + float temporalRotation = temporalRotations[Time.frameCount % 6]; + float temporalOffset = spatialOffsets[(Time.frameCount /* / 6*/) % (resolutionDownscale == ResolutionDownscale.Full ? 4 : 2)]; + ssrtMaterial.SetFloat("_TemporalDirections", temporalRotation / 360); + ssrtMaterial.SetFloat("_TemporalOffsets", temporalOffset); + + if (cameraSize != renderResolution / (float)resolutionDownscale) + { + cameraSize = renderResolution / (float) resolutionDownscale; + + if (ssrtMrt[0] != null) ssrtMrt[0].Release(); + ssrtMrt[0] = new RenderTexture((int)renderResolution.x / (int)resolutionDownscale, (int)renderResolution.y / (int)resolutionDownscale, 0, RenderTextureFormat.ARGBHalf); + ssrtMrt[0].filterMode = FilterMode.Point; + ssrtMrt[0].Create(); + + if (ssrtMrt[1] != null) ssrtMrt[1].Release(); + ssrtMrt[1] = new RenderTexture((int)renderResolution.x / (int)resolutionDownscale, (int)renderResolution.y / (int)resolutionDownscale, 0, RenderTextureFormat.DefaultHDR); + ssrtMrt[1].filterMode = FilterMode.Point; + ssrtMrt[1].Create(); + + if (ambientTexture != null) ambientTexture.Release(); + ambientTexture = new RenderTexture((int)renderResolution.x, (int)renderResolution.y, 0, RenderTextureFormat.DefaultHDR); + + if (previousFrameTexture != null) previousFrameTexture.Release(); + previousFrameTexture = new RenderTexture((int)renderResolution.x, (int)renderResolution.y, 0, RenderTextureFormat.DefaultHDR); + previousFrameTexture.filterMode = FilterMode.Point; + previousFrameTexture.Create(); + + if (previousDepthTexture != null) previousDepthTexture.Release(); + previousDepthTexture = new RenderTexture((int)renderResolution.x, (int)renderResolution.y, 0, RenderTextureFormat.RFloat); + previousDepthTexture.filterMode = FilterMode.Point; + previousDepthTexture.Create(); + } + + ssrtMaterial.SetTexture("_BentNormalTexture", ssrtMrt[0]); + ssrtMaterial.SetTexture("_GIOcclusionTexture", ssrtMrt[1]); + ssrtMaterial.SetTexture("_AmbientTexture", ambientTexture); + ssrtMaterial.SetTexture("_PreviousColor", previousFrameTexture); + ssrtMaterial.SetTexture("_PreviousDepth", previousDepthTexture); + } + + void RenderCubemap() + { + if (cubemapCamera == null) + { + var BackCamera = new GameObject("CubemapCamera", typeof(Camera)); + BackCamera.transform.SetParent(cam.transform); + cubemapCamera = BackCamera.GetComponent(); + cubemapCamera.CopyFrom(cam); + cubemapCamera.enabled = false; + cubemapCamera.renderingPath = RenderingPath.Forward; + } + if (cubemapFallback) + cubemapCamera.RenderToCubemap(cubemapFallback, 1 << Time.frameCount % 6 /*63*/); + } + #endregion + + #region CreationDestruction + Camera cam; + Camera cubemapCamera; + Material ssrtMaterial; + CommandBuffer ssrtBuffer = null; + CommandBuffer storeAmbientBuffer = null; + CommandBuffer clearBuffer = null; + Mesh mesh; + + Matrix4x4 lastFrameViewProjectionMatrix; + Matrix4x4 viewProjectionMatrix; + Matrix4x4 lastFrameInverseViewProjectionMatrix; + Vector2 cameraSize; + Vector2 renderResolution; + + RenderTexture ambientTexture; + RenderTexture previousFrameTexture; + RenderTexture previousDepthTexture; + RenderTexture[] ssrtMrt = new RenderTexture[2]; + + // From Activision GTAO paper: https://www.activision.com/cdn/research/s2016_pbs_activision_occlusion.pptx + static readonly float[] temporalRotations = { 60, 300, 180, 240, 120, 0 }; + static readonly float[] spatialOffsets = { 0, 0.5f, 0.25f, 0.75f }; + + void Awake() + { + cam = gameObject.GetComponent(); + cam.depthTextureMode |= DepthTextureMode.Depth | DepthTextureMode.MotionVectors; + + ssrtMaterial = new Material(Shader.Find("Hidden/SSRT")); + + mesh = new Mesh(); + mesh.vertices = new Vector3[] + { + new Vector3(-1, -1, 1), + new Vector3(-1, 1, 1), + new Vector3(1, 1, 1), + new Vector3(1, -1, 1) + }; + mesh.uv = new Vector2[] + { + new Vector2(0, 1), + new Vector2(0, 0), + new Vector2(1, 0), + new Vector2(1, 1) + }; + mesh.SetIndices(new int[] { 0, 1, 2, 3 }, MeshTopology.Quads, 0); + + if(fallbackMethod == FallbackMethod.DynamicCubemap) + { + cubemapFallback = new Cubemap(32, TextureFormat.RGB24, true); + cubemapFallback.Apply(true); + } + } + + void OnPreRender() + { + renderResolution = new Vector2(cam.pixelWidth, cam.pixelHeight); + + /* if ((renderResolution.x % 2 == 1 || renderResolution.y % 2 == 1) && resolutionDownscale != ResolutionDownscale.Full) + { + Debug.LogWarning("SSRT: Using uneven camera resolution (" + renderResolution.x + ", " + renderResolution.y + + ") with downscaling can introduce artifacts! Use a fixed resolution instead of free aspect."); + }*/ + + if (ssrtBuffer != null) + { + if (fallbackMethod == FallbackMethod.DynamicCubemap && Application.isPlaying) + { + RenderCubemap(); + } + UpdateVariables(); + GenerateCommandBuffers(); + } + } + + void OnEnable() + { + ssrtBuffer = new CommandBuffer(); + ssrtBuffer.name = "SSRT"; + storeAmbientBuffer = new CommandBuffer(); + storeAmbientBuffer.name = "StoreAmbient"; + clearBuffer = new CommandBuffer(); + clearBuffer.name = "ClearBuffer"; + cam.AddCommandBuffer(CameraEvent.BeforeImageEffectsOpaque, ssrtBuffer); + cam.AddCommandBuffer(CameraEvent.BeforeLighting, storeAmbientBuffer); + cam.AddCommandBuffer(CameraEvent.BeforeGBuffer, clearBuffer); + } + + void OnDisable() + { + if (ssrtBuffer != null) { + cam.RemoveCommandBuffer(CameraEvent.BeforeImageEffectsOpaque, ssrtBuffer); + ssrtBuffer = null; + } + if (storeAmbientBuffer != null) + { + cam.RemoveCommandBuffer(CameraEvent.BeforeLighting, storeAmbientBuffer); + storeAmbientBuffer = null; + } + if (clearBuffer != null) + { + cam.RemoveCommandBuffer(CameraEvent.BeforeGBuffer, clearBuffer); + clearBuffer = null; + } + } + + void OnDestroy() + { + if (ssrtMrt[0] != null) + { + ssrtMrt[0].Release(); + ssrtMrt[0] = null; + } + + if (ssrtMrt[1] != null) + { + ssrtMrt[1].Release(); + ssrtMrt[1] = null; + } + + if (ambientTexture != null) + { + ambientTexture.Release(); + ambientTexture = null; + } + + if (previousFrameTexture != null) + { + previousFrameTexture.Release(); + previousFrameTexture = null; + } + + if (previousDepthTexture != null) + { + previousDepthTexture.Release(); + previousDepthTexture = null; + } + + if (ssrtBuffer != null) + { + ssrtBuffer.Dispose(); + ssrtBuffer = null; + } + + if (storeAmbientBuffer != null) + { + storeAmbientBuffer.Dispose(); + storeAmbientBuffer = null; + } + + if (clearBuffer != null) + { + clearBuffer.Dispose(); + clearBuffer = null; + } + } + #endregion +} \ No newline at end of file diff --git a/Assets/Scripts/External/SSRT/Scripts/SSRT.cs.meta b/Assets/Scripts/External/SSRT/Scripts/SSRT.cs.meta new file mode 100644 index 0000000000..8bca3b5b64 --- /dev/null +++ b/Assets/Scripts/External/SSRT/Scripts/SSRT.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: e5720f3e4091d5649966a31a0c9adc84 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/External/SSRT/Scripts/SSRTToggle.cs b/Assets/Scripts/External/SSRT/Scripts/SSRTToggle.cs new file mode 100644 index 0000000000..b5f0fffa82 --- /dev/null +++ b/Assets/Scripts/External/SSRT/Scripts/SSRTToggle.cs @@ -0,0 +1,59 @@ +// SSRT. Copyright (c) 2019 CDRIN. MIT license (see LICENSE file) + +using UnityEngine; + +public class SSRTToggle : MonoBehaviour +{ + SSRT ssrt; + + void Start () + { + ssrt = GetComponent(); + } + + void Update () + { + if(ssrt) + { + if (Input.GetKeyDown(KeyCode.Alpha1)) + { + ssrt.enabled = true; + ssrt.debugMode = SSRT.DebugMode.Combined; + ssrt.lightOnly = false; + ssrt.directLightingAO = false; + } + if (Input.GetKeyDown(KeyCode.Alpha3)) + { + ssrt.enabled = true; + ssrt.debugMode = SSRT.DebugMode.GI; + ssrt.lightOnly = false; + } + if (Input.GetKeyDown(KeyCode.Alpha2)) + { + ssrt.enabled = false; + } + if (Input.GetKeyDown(KeyCode.Alpha4)) + { + ssrt.enabled = true; + ssrt.debugMode = SSRT.DebugMode.GI; + ssrt.lightOnly = true; + } + if (Input.GetKeyDown(KeyCode.Alpha5)) + { + ssrt.enabled = true; + ssrt.debugMode = SSRT.DebugMode.Combined; + ssrt.lightOnly = false; + ssrt.directLightingAO = true; + } + + if(Input.GetKeyDown(KeyCode.F)) + { + ssrt.resolutionDownscale = SSRT.ResolutionDownscale.Full; + } + if (Input.GetKeyDown(KeyCode.H)) + { + ssrt.resolutionDownscale = SSRT.ResolutionDownscale.Half; + } + } + } +} diff --git a/Assets/Scripts/External/SSRT/Scripts/SSRTToggle.cs.meta b/Assets/Scripts/External/SSRT/Scripts/SSRTToggle.cs.meta new file mode 100644 index 0000000000..86afdddbc0 --- /dev/null +++ b/Assets/Scripts/External/SSRT/Scripts/SSRTToggle.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 6e94a969036f843459ae1225136dea6d +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/External/SSRT/Shaders.meta b/Assets/Scripts/External/SSRT/Shaders.meta new file mode 100644 index 0000000000..4723c4db29 --- /dev/null +++ b/Assets/Scripts/External/SSRT/Shaders.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6f8f2a1884693e64eb4b29df19703afd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/External/SSRT/Shaders/Resources.meta b/Assets/Scripts/External/SSRT/Shaders/Resources.meta new file mode 100644 index 0000000000..b44f4b79b2 --- /dev/null +++ b/Assets/Scripts/External/SSRT/Shaders/Resources.meta @@ -0,0 +1,9 @@ +fileFormatVersion: 2 +guid: 25b9235e68b1ef24d92ca590681179fe +folderAsset: yes +timeCreated: 1555693890 +licenseType: Free +DefaultImporter: + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/Scripts/External/SSRT/Shaders/Resources/SSRT.shader b/Assets/Scripts/External/SSRT/Shaders/Resources/SSRT.shader new file mode 100644 index 0000000000..843b71224e --- /dev/null +++ b/Assets/Scripts/External/SSRT/Shaders/Resources/SSRT.shader @@ -0,0 +1,349 @@ +// SSRT. Copyright (c) 2019 CDRIN. MIT license (see LICENSE file) + +Shader "Hidden/SSRT" +{ + CGINCLUDE + #include "SSRTLib.cginc" + ENDCG + + SubShader + { + ZTest Always + Cull Off + ZWrite Off + + Pass // 0 + { + Name "SSRT" + CGPROGRAM + #pragma target 4.0 + #pragma vertex vert + #pragma fragment frag + + void frag(v2f input, out float3 BentNormalWorld : SV_Target0, out float4 GIOcclusion : SV_Target1) + { + float2 uv = input.uv.xy; + uv += (1.0 / _ScreenParams.xy) * (_ResolutionDownscale == 1 ? 0 : 0.5); + GIOcclusion = 0; + BentNormalWorld = SSRT(uv, _RotationCount, _StepCount, GIOcclusion); + } + ENDCG + } + + Pass // 1 + { + Name "Upsample" + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + + float4 frag(v2f input) : SV_Target + { + float2 uv = input.uv.xy; + float depth = LinearEyeDepth(tex2D(_CameraDepthTexture, uv).x); + half3 normalWorld = normalize(tex2D(_CameraGBufferTexture2, uv).rgb * 2 - 1); + + float pixelMultiplier = ((float)_ResolutionDownscale / 2.0) * (1.0 / _ScreenParams.xy); + + float4 uv00 = float4(uv + float2(-1.0, 0.0) * pixelMultiplier, 0, 0); + float4 uv10 = float4(uv + float2(1.0, 0.0) * pixelMultiplier, 0, 0); + float4 uv11 = float4(uv + float2(0.0, 1.0) * pixelMultiplier, 0, 0); + float4 uv01 = float4(uv + float2(0.0, -1.0) * pixelMultiplier, 0, 0); + + float4 sample00 = tex2Dlod(_GIOcclusionTexture, uv00); + float4 sample10 = tex2Dlod(_GIOcclusionTexture, uv10); + float4 sample11 = tex2Dlod(_GIOcclusionTexture, uv11); + float4 sample01 = tex2Dlod(_GIOcclusionTexture, uv01); + + float4 depthSamples = float4(0,0,0,0); + depthSamples.x = LinearEyeDepth(tex2Dlod(_CurrentDepth, uv00).x); + depthSamples.y = LinearEyeDepth(tex2Dlod(_CurrentDepth, uv10).x); + depthSamples.z = LinearEyeDepth(tex2Dlod(_CurrentDepth, uv11).x); + depthSamples.w = LinearEyeDepth(tex2Dlod(_CurrentDepth, uv01).x); + + half3 normal00 = normalize(tex2Dlod(_CurrentNormal, uv00).rgb * 2 - 1); + half3 normal10 = normalize(tex2Dlod(_CurrentNormal, uv10).rgb * 2 - 1); + half3 normal11 = normalize(tex2Dlod(_CurrentNormal, uv11).rgb * 2 - 1); + half3 normal01 = normalize(tex2Dlod(_CurrentNormal, uv01).rgb * 2 - 1); + + float4 weights = float4(1,1,1,1); + weights.x = distance(depthSamples.x, depth); + weights.y = distance(depthSamples.y, depth); + weights.z = distance(depthSamples.z, depth); + weights.w = distance(depthSamples.w, depth); + + weights.x *= (1 - saturate(dot(normal00, normalWorld))); + weights.y *= (1 - saturate(dot(normal10, normalWorld))); + weights.z *= (1 - saturate(dot(normal11, normalWorld))); + weights.w *= (1 - saturate(dot(normal01, normalWorld))); + + float minValue = min(min(min(weights.x, weights.y), weights.z), weights.w); + + float4 result = 0; + if (minValue == weights.x) + { + result = sample00; + } + else if (minValue == weights.y) + { + result = sample10; + } + else if (minValue == weights.z) + { + result = sample11; + } + else if (minValue == weights.w) + { + result = sample01; + } + + return result; + } + ENDCG + } + + Pass // 2 + { + Name "SampleReuse" + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + + float4 frag(v2f input) : SV_Target + { + float2 uv = input.uv.xy; + + float depth = LinearEyeDepth(tex2Dlod(_CameraDepthTexture, float4(uv, 0.0, 0.0)).x); + float3 normalWorld = tex2D (_CameraGBufferTexture2, uv).rgb * 2 - 1; + float4 result = 0; + + float weightSum = 0.0; + for(int i = 0; i < _ReuseCount; i++) + { + float2 offsetUV = offset[i] * (1.0 / _ScreenParams.xy); + + float2 neighborUv = uv + offsetUV; + + float reuseDepth = LinearEyeDepth(tex2Dlod(_CameraDepthTexture, float4(neighborUv, 0.0, 0.0)).x); + float3 reuseNormal = tex2D (_CameraGBufferTexture2, neighborUv).rgb * 2 - 1; + float4 sampleColor = tex2Dlod(_FilterTexture1, float4(neighborUv, 0, 0)); + + float thresh = 0.4; + float weight = 1.0; + weight *= saturate((1.0 - saturate(distance(depth, reuseDepth) / thresh)) * 1); + weight *= pow(saturate(dot(reuseNormal, normalWorld)), 5.0); + + + result += sampleColor * weight; + weightSum += weight; + } + result /= weightSum; + + return result.rgba; + } + ENDCG + } + + Pass // 3 + { + Name "TemporalReproj" + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + + float4 frag(v2f input) : SV_Target + { + float2 uv = input.uv.xy; + float2 oneOverResolution = (1.0 / _ScreenParams.xy); + + float4 gi = tex2D(_FilterTexture1, input.uv.xy); + float depth = LinearEyeDepth(tex2D(_CameraDepthTexture, input.uv.xy).x); + float4 currentPos = float4(input.uv.x * 2.0 - 1.0, input.uv.y * 2.0 - 1.0, depth * 2.0 - 1.0, 1.0); + + float4 fragpos = mul(_InverseViewProjectionMatrix, float4(float3(uv * 2 - 1, depth), 1)); + fragpos.xyz /= fragpos.w; + float4 thisWorldPosition = fragpos; + + float2 motionVectors = tex2Dlod(_CameraMotionVectorsTexture, float4(input.uv.xy, 0.0, 0.0)).xy; + float2 reprojCoord = input.uv.xy - motionVectors.xy; + + float prevDepth = LinearEyeDepth(tex2Dlod(_PreviousDepth, float4(reprojCoord + oneOverResolution * 0.0, 0.0, 0.0)).x); + + float4 previousWorldPosition = mul(_LastFrameInverseViewProjectionMatrix, float4(reprojCoord.xy * 2.0 - 1.0, prevDepth * 2.0 - 1.0, 1.0)); + previousWorldPosition /= previousWorldPosition.w; + + float blendWeight = _TemporalResponse; + + float posSimilarity = saturate(1.0 - distance(previousWorldPosition.xyz, thisWorldPosition.xyz) * 1.0); + blendWeight = lerp(1.0, blendWeight, posSimilarity); + + float4 minPrev = float4(10000, 10000, 10000, 10000); + float4 maxPrev = float4(0, 0, 0, 0); + + float4 s0 = tex2Dlod(_FilterTexture1, float4(input.uv.xy + oneOverResolution * float2(0.5, 0.5), 0, 0)); + minPrev = s0; + maxPrev = s0; + s0 = tex2Dlod(_FilterTexture1, float4(input.uv.xy + oneOverResolution * float2(0.5, -0.5), 0, 0)); + minPrev = min(minPrev, s0); + maxPrev = max(maxPrev, s0); + s0 = tex2Dlod(_FilterTexture1, float4(input.uv.xy + oneOverResolution * float2(-0.5, 0.5), 0, 0)); + minPrev = min(minPrev, s0); + maxPrev = max(maxPrev, s0); + s0 = tex2Dlod(_FilterTexture1, float4(input.uv.xy + oneOverResolution * float2(-0.5, -0.5), 0, 0)); + minPrev = min(minPrev, s0); + maxPrev = max(maxPrev, s0); + + float4 prevGI = tex2Dlod(_PreviousColor, float4(reprojCoord, 0.0, 0.0)); + prevGI = lerp(prevGI, clamp(prevGI, minPrev, maxPrev), 0.25); + + gi = lerp(prevGI, gi, float4(blendWeight, blendWeight, blendWeight, blendWeight)); + + return gi; + } + ENDCG + } + + Pass // 4 + { + Name"DebugMode AO" + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + + float4 frag(v2f input) : SV_Target + { + float2 uv = input.uv.xy; + float ao = tex2D(_FilterTexture2, uv).a; + + if (_MultiBounceAO) + { + float3 albedo = tex2D(_CameraGBufferTexture0, uv); + ao = MultiBounceAO(ao, albedo); + } + + return float4(ao.xxx, 1); + } + ENDCG + } + + Pass // 5 + { + Name"DebugMode BentNormal" + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + + float4 frag(v2f input) : SV_Target + { + float2 uv = input.uv.xy; + return float4(tex2D(_BentNormalTexture, uv).rgb * 0.5 + 0.5, 1); + } + ENDCG + } + + Pass // 6 + { + Name"DebugMode GI" + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + + float4 frag(v2f input) : SV_Target + { + float2 uv = input.uv.xy; + float3 albedo = _LightOnly ? 1 : tex2D(_CameraGBufferTexture0, uv.xy).rgb; + float4 GTAOGI = tex2D(_FilterTexture2, uv).rgba; + float3 ambient = _LightOnly ? 0 : tex2D(_AmbientTexture, uv).rgb; + + if (_MultiBounceAO) + { + GTAOGI.a = MultiBounceAO(GTAOGI.a, albedo); + } + + float3 SceneColor = GTAOGI.rgb * albedo + ambient * GTAOGI.a; + + return float4(SceneColor, 1); + } + ENDCG + } + + Pass // 7 + { + Name"DebugMode Combined" + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + + float4 frag(v2f input) : SV_Target + { + float2 uv = input.uv.xy; + + float3 albedo = _LightOnly ? 1 : tex2D(_CameraGBufferTexture0, uv.xy).rgb; + float4 GTAOGI = tex2D(_FilterTexture2, uv); + float3 ambient = _LightOnly ? 0 : tex2D(_AmbientTexture, uv).rgb; + float3 directLighting = tex2D(_CameraTexture, uv).rgb * (_DirectLightingAO ? GTAOGI.a : 1); + + if (_MultiBounceAO) + { + GTAOGI.a = MultiBounceAO(GTAOGI.a, albedo); + } + + float3 CameraColor = GTAOGI.rgb * albedo + directLighting + ambient * GTAOGI.a; + + return float4(CameraColor, 1); + } + ENDCG + } + + Pass // 8 + { + Name"GetDepth" + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + + float4 frag(v2f input) : COLOR0 + { + float2 coord = input.uv.xy + (1.0 / _ScreenParams.xy) * 0.5; + float4 tex = tex2D(_CameraDepthTexture, coord); + return tex; + } + ENDCG + } + + Pass // 9 + { + Name"GetNormal" + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + + float4 frag(v2f input) : COLOR0 + { + float2 coord = input.uv.xy + (1.0 / _ScreenParams.xy) * 0.5; + float4 tex = tex2D(_CameraGBufferTexture2, coord); + return tex; + } + + ENDCG + } + + Pass // 10 + { + Name"GetLightmask" + CGPROGRAM + #pragma vertex vert + #pragma fragment frag + + float4 frag(v2f input) : COLOR0 + { + float2 coord = input.uv.xy; + float3 tex = (tex2D(_CameraGBufferTexture3, coord).rgb + tex2D(_AmbientTexture, coord).rgb); + return float4(tex, 1); + } + + ENDCG + } + } +} + diff --git a/Assets/Scripts/External/SSRT/Shaders/Resources/SSRT.shader.meta b/Assets/Scripts/External/SSRT/Shaders/Resources/SSRT.shader.meta new file mode 100644 index 0000000000..75fcd644e7 --- /dev/null +++ b/Assets/Scripts/External/SSRT/Shaders/Resources/SSRT.shader.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2dbab40b5193e7640a8d53163872d2f7 +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: gtaogishaders + assetBundleVariant: diff --git a/Assets/Scripts/External/SSRT/Shaders/Resources/SSRTLib.cginc b/Assets/Scripts/External/SSRT/Shaders/Resources/SSRTLib.cginc new file mode 100644 index 0000000000..c6279eba6e --- /dev/null +++ b/Assets/Scripts/External/SSRT/Shaders/Resources/SSRTLib.cginc @@ -0,0 +1,355 @@ +// SSRT. Copyright (c) 2019 CDRIN. MIT license (see LICENSE file) + +#include "UnityCG.cginc" + +// Sampling properties +int _RotationCount; +int _StepCount; +float _Radius; +float _ExpStart; +float _ExpFactor; +int _JitterSamples; + +// GI properties +float _GIBoost; +float _LnDlOffset; +float _NDlOffset; + +// Occlusion properties +float _Power; +float _Thickness; +float _Falloff; +int _MultiBounceAO; +float _DirectLightingAO; + +// Offscreen fallback properties +#define FALLBACK_OFF 0 +#define FALLBACK_IRRADIANCE 1 +#define FALLBACK_DYNAMIC_CUBEMAP 2 + +int _FallbackMethod; +samplerCUBE _CubemapFallback; + +// Filters properties +int _ResolutionDownscale; +int _ReuseCount; +float _TemporalResponse; + +// Debug properties +int _LightOnly; + +// Internal parameters +int _FrameCount; +float _HalfProjScale; +float _TemporalOffsets; +float _TemporalDirections; + +// Transformation matrices +float4x4 _CameraToWorldMatrix; +float4x4 _InverseProjectionMatrix; +float4x4 _LastFrameViewProjectionMatrix; +float4x4 _InverseViewProjectionMatrix; +float4x4 _LastFrameInverseViewProjectionMatrix; + +// Built-in Unity textures +sampler2D _CameraGBufferTexture0; +sampler2D _CameraGBufferTexture1; +sampler2D _CameraGBufferTexture2; +sampler2D _CameraGBufferTexture3; +sampler2D _CameraReflectionsTexture; +sampler2D _CameraMotionVectorsTexture; +sampler2D _CameraDepthTexture; +sampler2D _CameraDepthNormalsTexture; + +// Render textures +sampler2D _CameraTexture; // Direct lighting +sampler2D _AmbientTexture; // Ambient + reflection probes +sampler2D _BentNormalTexture; +sampler2D _GIOcclusionTexture; // GI color (RGB), Occlusion (A) +sampler2D _FilterTexture1; // Ping pong texture for various filtering passes +sampler2D _FilterTexture2; // Ping pong texture for various filtering passes +sampler2D _CurrentDepth; // Lower resolution texture used for upscaling +sampler2D _CurrentNormal; // Lower resolution texture used for upscaling +sampler2D _LightmaskTexture; +sampler2D _PreviousColor; +sampler2D _PreviousDepth; + +struct appdata +{ + float4 vertex : POSITION; + float4 uv : TEXCOORD0; +}; + +struct v2f +{ + float4 pos : SV_POSITION; + float4 uv : TEXCOORD0; +}; + +v2f vert(appdata v) +{ + v2f o; + o.pos = v.vertex; + o.uv = v.uv; + if (_ProjectionParams.x > 0) + { + o.uv.y = 1 - o.uv.y; + } + return o; +} + +static const float2 offset[17] = +{ + float2(0, 0), + float2(2, -2), + float2(-2, -2), + float2(0, 2), + + float2(2, 0), + + float2(0, -2), + float2(-2, 0), + float2(-2, 2), + float2(2, 2), + + float2(4, -4), + float2(-4, -4), + float2(0, 4), + float2(4, 0), + + float2(0, -4), + float2(-4, 0), + float2(-4, 4), + float2(4, 4), +}; + +// From Activision GTAO paper: https://www.activision.com/cdn/research/s2016_pbs_activision_occlusion.pptx +inline float3 MultiBounceAO(float visibility, float3 albedo) +{ + float3 a = 2.0404 * albedo - 0.3324; + float3 b = -4.7951 * albedo + 0.6417; + float3 c = 2.7552 * albedo + 0.6903; + + float x = visibility; + return max(x, ((x * a + b) * x + c) * x); +} + +inline float3 PositionSSToVS(float2 uv) +{ + float logDepth = tex2Dlod(_CameraDepthTexture, float4(uv, 0, 0)).r; + float linearDepth = LinearEyeDepth(logDepth); + + float3 posVS; + posVS.xy = uv * 2 - 1; // Scale from screen [0, 1] to clip [-1, 1] + posVS.xy = mul((float2x2)_InverseProjectionMatrix, posVS.xy) * linearDepth; // Apply inverse scale/offset, remove w division + posVS.z = linearDepth; + return posVS; +} + +inline float3 GetNormalVS(float2 uv) +{ + float3 normalWS = tex2Dlod(_CameraGBufferTexture2, float4(uv, 0, 0)).rgb * 2 - 1; + float3 normalVS = normalize(mul((float3x3) /*_WorldToCameraMatrix*/UNITY_MATRIX_V, normalWS)); + return float3(normalVS.xy, -normalVS.z); +} + +// From Activision GTAO paper: https://www.activision.com/cdn/research/s2016_pbs_activision_occlusion.pptx +inline float SpatialOffsets(float2 uv) +{ + int2 position = (int2)(uv * _ScreenParams.xy); + return 0.25 * (float)((position.y - position.x) & 3); +} + +// Interleaved gradient function from Jimenez 2014 http://goo.gl/eomGso +inline float GradientNoise(float2 position) +{ + return frac(52.9829189 * frac(dot(position, float2( 0.06711056, 0.00583715)))); +} + +// From Activision GTAO paper: https://www.activision.com/cdn/research/s2016_pbs_activision_occlusion.pptx +float IntegrateArc(float2 h1, float2 h2, float n) +{ + return 0.25 * (-cos(2 * h1 - n) + cos(n) + 2 * h1 * sin(n)) + + 0.25 * (-cos(2 * h2 - n) + cos(n) + 2 * h2 * sin(n)); +} + +// From http://byteblacksmith.com/improvements-to-the-canonical-one-liner-glsl-rand-for-opengl-es-2-0/ +inline float rand(float2 co) +{ + float a = 12.9898; + float b = 78.233; + float c = 43758.5453; + float dt = dot(co.xy, float2(a, b)); + float sn = fmod(dt, 3.14); + return frac(sin(sn) * c); +} + +float4 SSRT(float2 uv, int rotationCount, int stepCount, inout float4 GIOcclusion) +{ + if (tex2D(_CameraDepthTexture, uv).r <= 1e-7) + { + GIOcclusion.a = 1; + return float4(0, 0, 0, 1); + } + + float3 posVS = PositionSSToVS(uv); + float3 normalVS = GetNormalVS(uv); + float3 normalWS = tex2D(_CameraGBufferTexture2, uv).rgb * 2 - 1; + float3 viewDir = normalize(-posVS); + + float radius = _Radius; + float thickness = 1; + + float noiseOffset = SpatialOffsets(uv); + float noiseDirection = GradientNoise(uv * _ScreenParams.xy); + + float initialRayStep = frac(noiseOffset + _TemporalOffsets) + (rand(uv) * 2.0 - 1.0) * 0.25 * float(_JitterSamples); + + float ao; + float2 H; + float3 bentNormalView; + float3 col = 0; + uint sampleCount = 0; + + UNITY_LOOP + for (int i = 0; i < rotationCount; i++) + { + float rotationAngle = (i + noiseDirection + _TemporalDirections) * (UNITY_PI / (float)rotationCount); + float3 sliceDir = float3(float2(cos(rotationAngle), sin(rotationAngle)), 0); + float2 slideDir_TexelSize = sliceDir.xy * (1.0 / _ScreenParams.xy); + float2 h = -1; + + float stepRadius = max((radius * _HalfProjScale) / posVS.z, (float)stepCount); + stepRadius /= ((float)stepCount + 1); + stepRadius *= _ExpStart; + + UNITY_LOOP + for (int j = 0; j < stepCount; j++) + { + float2 uvOffset = slideDir_TexelSize * max(stepRadius * (j + initialRayStep), 1 + j); + float2 uvSlice = uv + uvOffset; + + if(uvSlice.x <= 0 || uvSlice.y <= 0 || uvSlice.x >= 1 || uvSlice.y >= 1) + break; + + stepRadius *= _ExpFactor; + + float3 ds = PositionSSToVS(uvSlice) - posVS; + + float dds = dot(ds, ds); + float dsdtLength = rsqrt(dds); + + float falloff = saturate(dds * (2 / pow(radius, 2)) * _Falloff); + + H.x = dot(ds, viewDir) * dsdtLength; + + if (H.x > h.x) + { + float3 lmA = tex2Dlod(_LightmaskTexture, float4(uvSlice, 0, 0)).rgb; + if(Luminance(lmA) > 0.0) + { + float dsl = length(ds); + float distA = clamp(dsl, 0.1, 50); + float attA = clamp(1.0 / (/*3.1416*distA**/distA), 0, 50); + float3 dsn = normalize(ds); + float nDlA = saturate(dot(normalVS, dsn) + _NDlOffset); + + if (attA * nDlA > 0.0) + { + float3 sliceANormal = GetNormalVS(uvSlice); + + float LnDlA = saturate(dot(sliceANormal, -dsn) + _LnDlOffset); + col.xyz += attA * lmA * nDlA * LnDlA; + sampleCount++; + } + } + } + + h.x = (H.x > h.x && -(ds.z) < _Thickness) ? lerp(H.x, h.x, falloff) : lerp(H.x, h.x, thickness); + } + + UNITY_LOOP + for (j = 0; j < stepCount; j++) + { + float2 uvOffset = slideDir_TexelSize * max(stepRadius * (j + initialRayStep), 1 + j); + float2 uvSlice = uv - uvOffset; + + if(uvSlice.x <= 0 || uvSlice.y <= 0 || uvSlice.x >= 1 || uvSlice.y >= 1) + break; + + stepRadius *= _ExpFactor; + + float3 dt = PositionSSToVS(uvSlice) - posVS; + + float ddt = dot(dt, dt); + float dsdtLength = rsqrt(ddt); + + float falloff = saturate(ddt * (2 / pow(radius, 2)) * _Falloff); + + H = dot(dt, viewDir) * dsdtLength; + + + if (H.y > h.y) + { + float3 lmB = tex2Dlod(_LightmaskTexture, float4(uvSlice, 0, 0)).rgb; + if(Luminance(lmB) > 0.0) + { + float dtl = length(dt); + float distB = clamp(dtl, 0.1, 50); + float attB = clamp(1.0 / (/*3.1416*distB**/distB), 0, 50); + float3 dtn = normalize(dt); + float nDlB = saturate(dot(normalVS, dtn) + _NDlOffset); + + if (attB * nDlB> 0.0) + { + float3 sliceBNormal = GetNormalVS(uvSlice); + + float LnDlB = saturate(dot(sliceBNormal, -dtn) + _LnDlOffset); + col.xyz += attB * lmB * nDlB * LnDlB; + sampleCount++; + } + } + } + + h.y = (H.y > h.y && -dt.z < _Thickness) ? lerp(H.y, h.y, falloff) : lerp(H.y, h.y, thickness); + } + + float3 planeNormal = normalize(cross(sliceDir, viewDir)); + float3 tangent = cross(viewDir, planeNormal); + float3 projectedNormal = normalVS - planeNormal * dot(normalVS, planeNormal); + float projLength = length(projectedNormal); + + float cos_n = clamp(dot(normalize(projectedNormal), viewDir), -1, 1); + float n = -sign(dot(projectedNormal, tangent)) * acos(cos_n); + + h = acos(clamp(h, -1, 1)); + h.x = n + max(-h.x - n, -UNITY_HALF_PI); + h.y = n + min(h.y - n, UNITY_HALF_PI); + + float bentAngle = (h.x + h.y) * 0.5; + + bentNormalView += viewDir * cos(bentAngle) - tangent * sin(bentAngle); + ao += projLength * IntegrateArc(h.x, h.y, n); + } + + col /= rotationCount * stepCount * 2;//max(sampleCount, 1); + + bentNormalView = normalize(normalize(bentNormalView) - viewDir * 0.5); + float3 bentNormalWorld = mul((float3x3)_CameraToWorldMatrix, float3(bentNormalView.rg, -bentNormalView.b)); + + ao = saturate(pow(ao / (float)rotationCount, _Power)); + + float3 fallbackColor = 0; + if (_FallbackMethod == FALLBACK_IRRADIANCE || _FallbackMethod == FALLBACK_DYNAMIC_CUBEMAP) + { + + float mip = _FallbackMethod == FALLBACK_DYNAMIC_CUBEMAP ? 7 : 0; + float3 cubemapColor = pow(texCUBElod(_CubemapFallback, float4(bentNormalWorld, mip)), 1); + fallbackColor = cubemapColor * ao; + } + + GIOcclusion.rgb = fallbackColor + col /** (1- ao)*/ * _GIBoost; + GIOcclusion.a = ao; + + return float4(bentNormalWorld, 1.0); +} diff --git a/Assets/Scripts/External/SSRT/Shaders/Resources/SSRTLib.cginc.meta b/Assets/Scripts/External/SSRT/Shaders/Resources/SSRTLib.cginc.meta new file mode 100644 index 0000000000..3a9aecc225 --- /dev/null +++ b/Assets/Scripts/External/SSRT/Shaders/Resources/SSRTLib.cginc.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8d8264880f6b9ea4cbdaececa3fcfd99 +ShaderImporter: + defaultTextures: [] + userData: + assetBundleName: gtaogishaders + assetBundleVariant: diff --git a/Assets/Scripts/SS3D/Systems/Inventory/Items/Item.cs b/Assets/Scripts/SS3D/Systems/Inventory/Items/Item.cs index 211777c127..f0a5ef1da7 100644 --- a/Assets/Scripts/SS3D/Systems/Inventory/Items/Item.cs +++ b/Assets/Scripts/SS3D/Systems/Inventory/Items/Item.cs @@ -305,7 +305,7 @@ public Sprite GenerateIcon() try { Texture2D texture = RuntimePreviewGenerator.GenerateModelPreviewWithShader(previewObject, - Shader.Find("Legacy Shaders/Diffuse"), null, 128, 128); + Shader.Find("Unlit/ObjectIcon"), null, 128, 128); icon = Sprite.Create(texture, new Rect(0, 0, texture.width, texture.height), new Vector2(0.5f, 0.5f), 100); icon.name = transform.name; diff --git a/Assets/Scripts/SS3D/Systems/Tile/SO/GenericObjectSo.cs b/Assets/Scripts/SS3D/Systems/Tile/SO/GenericObjectSo.cs index 2353430225..0618847cd7 100644 --- a/Assets/Scripts/SS3D/Systems/Tile/SO/GenericObjectSo.cs +++ b/Assets/Scripts/SS3D/Systems/Tile/SO/GenericObjectSo.cs @@ -11,7 +11,7 @@ namespace SS3D.Systems.Tile public class GenericObjectSo : ScriptableObject { [NotNull] - public string NameString => prefab.name; + public string NameString => name; public GameObject prefab; public Sprite icon; diff --git a/Builds/Game/Data/Tilemaps/ministation.json b/Builds/Game/Data/Tilemaps/ministation.json index 35a25d3c8d..2b6705f200 100644 --- a/Builds/Game/Data/Tilemaps/ministation.json +++ b/Builds/Game/Data/Tilemaps/ministation.json @@ -1 +1 @@ -{"mapName":"UnnamedMap","savedChunkList":[{"chunkKey":{"x":0,"y":0},"originPosition":{"x":0.0,"y":0.0,"z":0.0},"savedTiles":[{"rid":1000},{"rid":1001},{"rid":1002},{"rid":1003},{"rid":1004},{"rid":1005},{"rid":1006},{"rid":1007},{"rid":1008},{"rid":1009},{"rid":1010},{"rid":1011},{"rid":1012},{"rid":1013},{"rid":1014},{"rid":1015},{"rid":1016},{"rid":1017},{"rid":1018},{"rid":1019},{"rid":1020},{"rid":1021},{"rid":1022},{"rid":1023},{"rid":1024},{"rid":1025},{"rid":1026},{"rid":1027},{"rid":1028},{"rid":1029},{"rid":1030},{"rid":1031},{"rid":1032},{"rid":1033},{"rid":1034},{"rid":1035},{"rid":1036},{"rid":1037},{"rid":1038},{"rid":1039},{"rid":1040},{"rid":1041},{"rid":1042},{"rid":1043},{"rid":1044},{"rid":1045},{"rid":1046},{"rid":1047},{"rid":1048},{"rid":1049},{"rid":1050},{"rid":1051},{"rid":1052},{"rid":1053},{"rid":1054},{"rid":1055},{"rid":1056},{"rid":1057},{"rid":1058},{"rid":1059},{"rid":1060},{"rid":1061},{"rid":1062},{"rid":1063},{"rid":1064},{"rid":1065},{"rid":1066},{"rid":1067},{"rid":1068},{"rid":1069},{"rid":1070},{"rid":1071},{"rid":1072},{"rid":1073},{"rid":1074},{"rid":1075},{"rid":1076},{"rid":1077},{"rid":1078},{"rid":1079},{"rid":1080},{"rid":1081},{"rid":1082},{"rid":1083},{"rid":1084},{"rid":1085},{"rid":1086},{"rid":1087},{"rid":1088},{"rid":1089},{"rid":1090},{"rid":1091},{"rid":1092},{"rid":1093},{"rid":1094},{"rid":1095},{"rid":1096},{"rid":1097},{"rid":1098},{"rid":1099},{"rid":1100},{"rid":1101},{"rid":1102},{"rid":1103},{"rid":1104},{"rid":1105},{"rid":1106},{"rid":1107},{"rid":1108},{"rid":1109},{"rid":1110},{"rid":1111},{"rid":1112},{"rid":1113},{"rid":1114},{"rid":1115},{"rid":1116},{"rid":1117},{"rid":1118},{"rid":1119},{"rid":1120},{"rid":1121},{"rid":1122},{"rid":1123},{"rid":1124},{"rid":1125},{"rid":1126},{"rid":1127},{"rid":1128},{"rid":1129},{"rid":1130},{"rid":1131},{"rid":1132},{"rid":1133},{"rid":1134},{"rid":1135},{"rid":1136},{"rid":1137},{"rid":1138},{"rid":1139},{"rid":1140},{"rid":1141},{"rid":1142},{"rid":1143},{"rid":1144},{"rid":1145},{"rid":1146},{"rid":1147},{"rid":1148},{"rid":1149},{"rid":1150},{"rid":1151},{"rid":1152},{"rid":1153},{"rid":1154},{"rid":1155},{"rid":1156},{"rid":1157},{"rid":1158},{"rid":1159},{"rid":1160},{"rid":1161},{"rid":1162},{"rid":1163},{"rid":1164},{"rid":1165},{"rid":1166},{"rid":1167},{"rid":1168},{"rid":1169},{"rid":1170},{"rid":1171},{"rid":1172},{"rid":1173},{"rid":1174},{"rid":1175},{"rid":1176},{"rid":1177},{"rid":1178},{"rid":1179},{"rid":1180},{"rid":1181},{"rid":1182},{"rid":1183},{"rid":1184},{"rid":1185},{"rid":1186},{"rid":1187},{"rid":1188},{"rid":1189},{"rid":1190},{"rid":1191},{"rid":1192},{"rid":1193},{"rid":1194},{"rid":1195},{"rid":1196},{"rid":1197},{"rid":1198},{"rid":1199},{"rid":1200},{"rid":1201},{"rid":1202},{"rid":1203},{"rid":1204},{"rid":1205},{"rid":1206},{"rid":1207},{"rid":1208},{"rid":1209},{"rid":1210},{"rid":1211},{"rid":1212},{"rid":1213},{"rid":1214},{"rid":1215},{"rid":1216},{"rid":1217},{"rid":1218},{"rid":1219},{"rid":1220},{"rid":1221},{"rid":1222},{"rid":1223},{"rid":1224},{"rid":1225},{"rid":1226},{"rid":1227},{"rid":1228},{"rid":1229},{"rid":1230},{"rid":1231},{"rid":1232},{"rid":1233},{"rid":1234},{"rid":1235},{"rid":1236},{"rid":1237},{"rid":1238},{"rid":1239},{"rid":1240},{"rid":1241},{"rid":1242},{"rid":1243},{"rid":1244},{"rid":1245},{"rid":1246},{"rid":1247},{"rid":1248},{"rid":1249},{"rid":1250},{"rid":1251},{"rid":1252},{"rid":1253},{"rid":1254},{"rid":1255},{"rid":1256},{"rid":1257},{"rid":1258},{"rid":1259},{"rid":1260},{"rid":1261},{"rid":1262},{"rid":1263},{"rid":1264},{"rid":1265},{"rid":1266},{"rid":1267},{"rid":1268},{"rid":1269},{"rid":1270},{"rid":1271},{"rid":1272},{"rid":1273},{"rid":1274},{"rid":1275},{"rid":1276},{"rid":1277},{"rid":1278},{"rid":1279},{"rid":1280},{"rid":1281},{"rid":1282},{"rid":1283},{"rid":1284},{"rid":1285},{"rid":1286},{"rid":1287},{"rid":1288},{"rid":1289},{"rid":1290},{"rid":1291},{"rid":1292},{"rid":1293},{"rid":1294},{"rid":1295},{"rid":1296},{"rid":1297},{"rid":1298},{"rid":1299},{"rid":1300},{"rid":1301},{"rid":1302},{"rid":1303},{"rid":1304},{"rid":1305},{"rid":1306},{"rid":1307},{"rid":1308},{"rid":1309},{"rid":1310},{"rid":1311},{"rid":1312},{"rid":1313},{"rid":1314},{"rid":1315},{"rid":1316},{"rid":1317},{"rid":1318},{"rid":1319},{"rid":1320},{"rid":1321},{"rid":1322},{"rid":1323},{"rid":1324},{"rid":1325},{"rid":1326},{"rid":1327},{"rid":1328},{"rid":1329},{"rid":1330},{"rid":1331},{"rid":1332},{"rid":1333},{"rid":1334},{"rid":1335},{"rid":1336},{"rid":1337},{"rid":1338},{"rid":1339},{"rid":1340},{"rid":1341},{"rid":1342},{"rid":1343},{"rid":1344},{"rid":1345},{"rid":1346},{"rid":1347},{"rid":1348},{"rid":1349},{"rid":1350},{"rid":1351},{"rid":1352},{"rid":1353},{"rid":1354},{"rid":1355},{"rid":1356},{"rid":1357},{"rid":1358},{"rid":1359},{"rid":1360},{"rid":1361},{"rid":1362},{"rid":1363},{"rid":1364},{"rid":1365},{"rid":1366},{"rid":1367},{"rid":1368},{"rid":1369},{"rid":1370},{"rid":1371},{"rid":1372},{"rid":1373},{"rid":1374},{"rid":1375},{"rid":1376}]},{"chunkKey":{"x":0,"y":-1},"originPosition":{"x":0.0,"y":0.0,"z":-16.0},"savedTiles":[{"rid":1377},{"rid":1378},{"rid":1379},{"rid":1380},{"rid":1381},{"rid":1382},{"rid":1383},{"rid":1384},{"rid":1385},{"rid":1386},{"rid":1387},{"rid":1388},{"rid":1389},{"rid":1390},{"rid":1391},{"rid":1392},{"rid":1393},{"rid":1394},{"rid":1395},{"rid":1396},{"rid":1397},{"rid":1398},{"rid":1399},{"rid":1400},{"rid":1401},{"rid":1402},{"rid":1403},{"rid":1404},{"rid":1405},{"rid":1406},{"rid":1407},{"rid":1408},{"rid":1409},{"rid":1410},{"rid":1411},{"rid":1412},{"rid":1413},{"rid":1414},{"rid":1415},{"rid":1416},{"rid":1417},{"rid":1418},{"rid":1419},{"rid":1420},{"rid":1421},{"rid":1422},{"rid":1423},{"rid":1424},{"rid":1425},{"rid":1426},{"rid":1427},{"rid":1428},{"rid":1429},{"rid":1430},{"rid":1431},{"rid":1432},{"rid":1433},{"rid":1434},{"rid":1435},{"rid":1436},{"rid":1437},{"rid":1438},{"rid":1439},{"rid":1440},{"rid":1441},{"rid":1442},{"rid":1443},{"rid":1444},{"rid":1445},{"rid":1446},{"rid":1447},{"rid":1448},{"rid":1449},{"rid":1450},{"rid":1451},{"rid":1452},{"rid":1453},{"rid":1454},{"rid":1455},{"rid":1456},{"rid":1457},{"rid":1458},{"rid":1459},{"rid":1460},{"rid":1461},{"rid":1462},{"rid":1463},{"rid":1464},{"rid":1465},{"rid":1466},{"rid":1467},{"rid":1468},{"rid":1469},{"rid":1470},{"rid":1471},{"rid":1472},{"rid":1473},{"rid":1474},{"rid":1475},{"rid":1476},{"rid":1477},{"rid":1478},{"rid":1479},{"rid":1480},{"rid":1481},{"rid":1482},{"rid":1483},{"rid":1484},{"rid":1485},{"rid":1486},{"rid":1487},{"rid":1488},{"rid":1489},{"rid":1490},{"rid":1491},{"rid":1492},{"rid":1493},{"rid":1494},{"rid":1495},{"rid":1496},{"rid":1497},{"rid":1498},{"rid":1499},{"rid":1500},{"rid":1501},{"rid":1502},{"rid":1503},{"rid":1504},{"rid":1505},{"rid":1506},{"rid":1507},{"rid":1508},{"rid":1509},{"rid":1510},{"rid":1511},{"rid":1512},{"rid":1513},{"rid":1514},{"rid":1515},{"rid":1516},{"rid":1517},{"rid":1518},{"rid":1519},{"rid":1520},{"rid":1521},{"rid":1522},{"rid":1523},{"rid":1524},{"rid":1525},{"rid":1526},{"rid":1527},{"rid":1528},{"rid":1529},{"rid":1530},{"rid":1531},{"rid":1532},{"rid":1533},{"rid":1534},{"rid":1535},{"rid":1536},{"rid":1537},{"rid":1538},{"rid":1539},{"rid":1540},{"rid":1541},{"rid":1542},{"rid":1543},{"rid":1544},{"rid":1545},{"rid":1546},{"rid":1547},{"rid":1548},{"rid":1549},{"rid":1550},{"rid":1551},{"rid":1552},{"rid":1553},{"rid":1554},{"rid":1555},{"rid":1556},{"rid":1557},{"rid":1558},{"rid":1559},{"rid":1560},{"rid":1561},{"rid":1562},{"rid":1563},{"rid":1564},{"rid":1565},{"rid":1566},{"rid":1567},{"rid":1568},{"rid":1569},{"rid":1570},{"rid":1571},{"rid":1572},{"rid":1573},{"rid":1574},{"rid":1575},{"rid":1576},{"rid":1577},{"rid":1578},{"rid":1579},{"rid":1580},{"rid":1581},{"rid":1582},{"rid":1583},{"rid":1584},{"rid":1585},{"rid":1586},{"rid":1587},{"rid":1588},{"rid":1589},{"rid":1590},{"rid":1591},{"rid":1592},{"rid":1593},{"rid":1594},{"rid":1595},{"rid":1596},{"rid":1597},{"rid":1598},{"rid":1599},{"rid":1600},{"rid":1601},{"rid":1602},{"rid":1603},{"rid":1604},{"rid":1605},{"rid":1606},{"rid":1607},{"rid":1608},{"rid":1609},{"rid":1610},{"rid":1611},{"rid":1612},{"rid":1613},{"rid":1614},{"rid":1615},{"rid":1616},{"rid":1617},{"rid":1618},{"rid":1619},{"rid":1620},{"rid":1621},{"rid":1622},{"rid":1623},{"rid":1624},{"rid":1625},{"rid":1626},{"rid":1627},{"rid":1628},{"rid":1629},{"rid":1630},{"rid":1631},{"rid":1632},{"rid":1633},{"rid":1634},{"rid":1635},{"rid":1636},{"rid":1637},{"rid":1638},{"rid":1639},{"rid":1640},{"rid":1641},{"rid":1642},{"rid":1643},{"rid":1644},{"rid":1645},{"rid":1646},{"rid":1647},{"rid":1648},{"rid":1649},{"rid":1650},{"rid":1651},{"rid":1652},{"rid":1653},{"rid":1654},{"rid":1655},{"rid":1656},{"rid":1657},{"rid":1658},{"rid":1659},{"rid":1660},{"rid":1661},{"rid":1662},{"rid":1663},{"rid":1664},{"rid":1665},{"rid":1666},{"rid":1667},{"rid":1668},{"rid":1669},{"rid":1670},{"rid":1671},{"rid":1672},{"rid":1673},{"rid":1674},{"rid":1675},{"rid":1676},{"rid":1677},{"rid":1678},{"rid":1679},{"rid":1680},{"rid":1681},{"rid":1682},{"rid":1683},{"rid":1684},{"rid":1685},{"rid":1686},{"rid":1687},{"rid":1688},{"rid":1689}]},{"chunkKey":{"x":-1,"y":-1},"originPosition":{"x":-16.0,"y":0.0,"z":-16.0},"savedTiles":[{"rid":1690},{"rid":1691},{"rid":1692},{"rid":1693},{"rid":1694},{"rid":1695},{"rid":1696},{"rid":1697},{"rid":1698},{"rid":1699},{"rid":1700},{"rid":1701},{"rid":1702},{"rid":1703},{"rid":1704},{"rid":1705},{"rid":1706},{"rid":1707},{"rid":1708},{"rid":1709},{"rid":1710},{"rid":1711},{"rid":1712},{"rid":1713},{"rid":1714},{"rid":1715},{"rid":1716},{"rid":1717},{"rid":1718},{"rid":1719},{"rid":1720},{"rid":1721},{"rid":1722},{"rid":1723},{"rid":1724},{"rid":1725},{"rid":1726},{"rid":1727},{"rid":1728},{"rid":1729},{"rid":1730},{"rid":1731},{"rid":1732},{"rid":1733},{"rid":1734},{"rid":1735},{"rid":1736},{"rid":1737},{"rid":1738},{"rid":1739},{"rid":1740},{"rid":1741},{"rid":1742},{"rid":1743},{"rid":1744},{"rid":1745},{"rid":1746},{"rid":1747},{"rid":1748},{"rid":1749},{"rid":1750},{"rid":1751},{"rid":1752},{"rid":1753},{"rid":1754},{"rid":1755},{"rid":1756},{"rid":1757},{"rid":1758},{"rid":1759},{"rid":1760},{"rid":1761},{"rid":1762},{"rid":1763},{"rid":1764},{"rid":1765},{"rid":1766},{"rid":1767}]},{"chunkKey":{"x":-1,"y":0},"originPosition":{"x":-16.0,"y":0.0,"z":0.0},"savedTiles":[{"rid":1768},{"rid":1769},{"rid":1770},{"rid":1771},{"rid":1772},{"rid":1773},{"rid":1774},{"rid":1775},{"rid":1776},{"rid":1777},{"rid":1778},{"rid":1779},{"rid":1780},{"rid":1781},{"rid":1782},{"rid":1783},{"rid":1784},{"rid":1785},{"rid":1786},{"rid":1787},{"rid":1788},{"rid":1789},{"rid":1790},{"rid":1791},{"rid":1792},{"rid":1793},{"rid":1794},{"rid":1795},{"rid":1796},{"rid":1797},{"rid":1798},{"rid":1799},{"rid":1800},{"rid":1801},{"rid":1802},{"rid":1803},{"rid":1804},{"rid":1805},{"rid":1806},{"rid":1807},{"rid":1808},{"rid":1809},{"rid":1810},{"rid":1811},{"rid":1812},{"rid":1813},{"rid":1814},{"rid":1815},{"rid":1816},{"rid":1817},{"rid":1818},{"rid":1819},{"rid":1820},{"rid":1821},{"rid":1822},{"rid":1823},{"rid":1824},{"rid":1825},{"rid":1826},{"rid":1827},{"rid":1828},{"rid":1829},{"rid":1830},{"rid":1831},{"rid":1832},{"rid":1833},{"rid":1834},{"rid":1835},{"rid":1836},{"rid":1837},{"rid":1838},{"rid":1839},{"rid":1840},{"rid":1841}]},{"chunkKey":{"x":1,"y":0},"originPosition":{"x":16.0,"y":0.0,"z":0.0},"savedTiles":[{"rid":1842},{"rid":1843},{"rid":1844},{"rid":1845},{"rid":1846},{"rid":1847},{"rid":1848},{"rid":1849},{"rid":1850},{"rid":1851},{"rid":1852},{"rid":1853},{"rid":1854},{"rid":1855},{"rid":1856},{"rid":1857}]},{"chunkKey":{"x":1,"y":-1},"originPosition":{"x":16.0,"y":0.0,"z":-16.0},"savedTiles":[{"rid":1858},{"rid":1859},{"rid":1860},{"rid":1861},{"rid":1862},{"rid":1863},{"rid":1864},{"rid":1865},{"rid":1866},{"rid":1867},{"rid":1868},{"rid":1869},{"rid":1870},{"rid":1871},{"rid":1872},{"rid":1873}]},{"chunkKey":{"x":-2,"y":0},"originPosition":{"x":-32.0,"y":0.0,"z":0.0},"savedTiles":[]},{"chunkKey":{"x":-2,"y":1},"originPosition":{"x":-32.0,"y":0.0,"z":16.0},"savedTiles":[]},{"chunkKey":{"x":0,"y":1},"originPosition":{"x":0.0,"y":0.0,"z":16.0},"savedTiles":[]},{"chunkKey":{"x":1,"y":1},"originPosition":{"x":16.0,"y":0.0,"z":16.0},"savedTiles":[]},{"chunkKey":{"x":2,"y":-2},"originPosition":{"x":32.0,"y":0.0,"z":-32.0},"savedTiles":[]},{"chunkKey":{"x":2,"y":-1},"originPosition":{"x":32.0,"y":0.0,"z":-16.0},"savedTiles":[]},{"chunkKey":{"x":1,"y":-3},"originPosition":{"x":16.0,"y":0.0,"z":-48.0},"savedTiles":[]},{"chunkKey":{"x":2,"y":0},"originPosition":{"x":32.0,"y":0.0,"z":0.0},"savedTiles":[]},{"chunkKey":{"x":0,"y":-2},"originPosition":{"x":0.0,"y":0.0,"z":-32.0},"savedTiles":[]}],"savedItemList":[{"itemName":"Sunglasses","worldPosition":{"x":-2.722350597381592,"y":0.0,"z":-5.493870735168457},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"TruckerCap","worldPosition":{"x":-3.0079312324523927,"y":0.0,"z":-5.865357875823975},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"pda","worldPosition":{"x":0.7928969264030457,"y":0.0,"z":-6.824997901916504},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"idcard","worldPosition":{"x":0.8076226115226746,"y":0.0,"z":-6.458649158477783},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"security_pda","worldPosition":{"x":1.1651837825775147,"y":0.0,"z":-6.811561107635498},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"poster","worldPosition":{"x":-3.048208475112915,"y":0.0,"z":-3.8842735290527345},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"Kitchen knife","worldPosition":{"x":14.001124382019043,"y":0.0,"z":-6.846427917480469},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"mug","worldPosition":{"x":13.765487670898438,"y":0.0,"z":-7.185887336730957},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"mug","worldPosition":{"x":13.693388938903809,"y":0.0,"z":-6.832640647888184},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"GasMask","worldPosition":{"x":-3.1002840995788576,"y":0.0,"z":-5.264541149139404},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"nuke_disk","worldPosition":{"x":8.79245376586914,"y":0.0,"z":10.2618408203125},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"security_idcard","worldPosition":{"x":1.2008566856384278,"y":0.0,"z":-6.482534408569336},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"bikehorn","worldPosition":{"x":3.0536062717437746,"y":0.0,"z":-3.0902297496795656},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"soda_cannedlaughter","worldPosition":{"x":14.239484786987305,"y":4.76837158203125e-7,"z":-3.8687427043914797},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"soda_cannedair","worldPosition":{"x":14.034838676452637,"y":4.76837158203125e-7,"z":-4.005363464355469},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"soda_cola","worldPosition":{"x":14.20504093170166,"y":-4.76837158203125e-7,"z":-3.5050411224365236},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"soda_cola","worldPosition":{"x":14.00119400024414,"y":0.0,"z":-3.67545485496521},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"toolbox_blue","worldPosition":{"x":2.4964041709899904,"y":0.0,"z":-3.150343179702759},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"toolbox_blue","worldPosition":{"x":2.003046989440918,"y":0.0,"z":-2.9925429821014406},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}}],"references":{"version":2,"RefIds":[{"rid":1000,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":0},"dir":0},"_x":0,"_y":0}},{"rid":1001,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":1},"dir":0},"_x":0,"_y":1}},{"rid":1002,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":2},"dir":0},"_x":0,"_y":2}},{"rid":1003,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":3},"dir":0},"_x":0,"_y":3}},{"rid":1004,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":4},"dir":4},"_x":0,"_y":4}},{"rid":1005,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":5},"dir":4},"_x":0,"_y":5}},{"rid":1006,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":6},"dir":4},"_x":0,"_y":6}},{"rid":1007,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":7},"dir":4},"_x":0,"_y":7}},{"rid":1008,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":8},"dir":4},"_x":0,"_y":8}},{"rid":1009,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":9},"dir":4},"_x":0,"_y":9}},{"rid":1010,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":10},"dir":4},"_x":0,"_y":10}},{"rid":1011,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":11},"dir":4},"_x":0,"_y":11}},{"rid":1012,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":0},"dir":0},"_x":1,"_y":0}},{"rid":1013,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":1},"dir":0},"_x":1,"_y":1}},{"rid":1014,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":2},"dir":0},"_x":1,"_y":2}},{"rid":1015,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":3},"dir":0},"_x":1,"_y":3}},{"rid":1016,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":4},"dir":4},"_x":1,"_y":4}},{"rid":1017,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":5},"dir":4},"_x":1,"_y":5}},{"rid":1018,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":6},"dir":4},"_x":1,"_y":6}},{"rid":1019,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":7},"dir":4},"_x":1,"_y":7}},{"rid":1020,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":8},"dir":4},"_x":1,"_y":8}},{"rid":1021,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":9},"dir":4},"_x":1,"_y":9}},{"rid":1022,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":10},"dir":4},"_x":1,"_y":10}},{"rid":1023,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":11},"dir":4},"_x":1,"_y":11}},{"rid":1024,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":0},"dir":0},"_x":2,"_y":0}},{"rid":1025,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":1},"dir":0},"_x":2,"_y":1}},{"rid":1026,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":2},"dir":0},"_x":2,"_y":2}},{"rid":1027,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":3},"dir":0},"_x":2,"_y":3}},{"rid":1028,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":4},"dir":0},"_x":2,"_y":4}},{"rid":1029,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":5},"dir":0},"_x":2,"_y":5}},{"rid":1030,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":6},"dir":0},"_x":2,"_y":6}},{"rid":1031,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":7},"dir":0},"_x":2,"_y":7}},{"rid":1032,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":8},"dir":4},"_x":2,"_y":8}},{"rid":1033,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":9},"dir":4},"_x":2,"_y":9}},{"rid":1034,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":10},"dir":4},"_x":2,"_y":10}},{"rid":1035,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":11},"dir":4},"_x":2,"_y":11}},{"rid":1036,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":12},"dir":4},"_x":2,"_y":12}},{"rid":1037,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":0},"dir":0},"_x":3,"_y":0}},{"rid":1038,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":1},"dir":0},"_x":3,"_y":1}},{"rid":1039,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":2},"dir":0},"_x":3,"_y":2}},{"rid":1040,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":3},"dir":0},"_x":3,"_y":3}},{"rid":1041,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":4},"dir":0},"_x":3,"_y":4}},{"rid":1042,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":5},"dir":0},"_x":3,"_y":5}},{"rid":1043,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":6},"dir":0},"_x":3,"_y":6}},{"rid":1044,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":7},"dir":0},"_x":3,"_y":7}},{"rid":1045,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":8},"dir":4},"_x":3,"_y":8}},{"rid":1046,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":9},"dir":4},"_x":3,"_y":9}},{"rid":1047,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":10},"dir":4},"_x":3,"_y":10}},{"rid":1048,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":11},"dir":4},"_x":3,"_y":11}},{"rid":1049,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":12},"dir":4},"_x":3,"_y":12}},{"rid":1050,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":0},"dir":0},"_x":4,"_y":0}},{"rid":1051,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":1},"dir":0},"_x":4,"_y":1}},{"rid":1052,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":2},"dir":0},"_x":4,"_y":2}},{"rid":1053,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":3},"dir":0},"_x":4,"_y":3}},{"rid":1054,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":4},"dir":0},"_x":4,"_y":4}},{"rid":1055,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":5},"dir":0},"_x":4,"_y":5}},{"rid":1056,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":6},"dir":0},"_x":4,"_y":6}},{"rid":1057,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":7},"dir":0},"_x":4,"_y":7}},{"rid":1058,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":8},"dir":4},"_x":4,"_y":8}},{"rid":1059,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":9},"dir":4},"_x":4,"_y":9}},{"rid":1060,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":10},"dir":4},"_x":4,"_y":10}},{"rid":1061,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":11},"dir":4},"_x":4,"_y":11}},{"rid":1062,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":12},"dir":4},"_x":4,"_y":12}},{"rid":1063,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":13},"dir":4},"_x":4,"_y":13}},{"rid":1064,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":0},"dir":0},"_x":5,"_y":0}},{"rid":1065,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":1},"dir":0},"_x":5,"_y":1}},{"rid":1066,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":2},"dir":0},"_x":5,"_y":2}},{"rid":1067,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":3},"dir":0},"_x":5,"_y":3}},{"rid":1068,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":4},"dir":0},"_x":5,"_y":4}},{"rid":1069,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":5},"dir":0},"_x":5,"_y":5}},{"rid":1070,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":6},"dir":0},"_x":5,"_y":6}},{"rid":1071,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":7},"dir":0},"_x":5,"_y":7}},{"rid":1072,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":8},"dir":4},"_x":5,"_y":8}},{"rid":1073,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":9},"dir":4},"_x":5,"_y":9}},{"rid":1074,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":10},"dir":4},"_x":5,"_y":10}},{"rid":1075,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":11},"dir":4},"_x":5,"_y":11}},{"rid":1076,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":12},"dir":4},"_x":5,"_y":12}},{"rid":1077,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":13},"dir":4},"_x":5,"_y":13}},{"rid":1078,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":0},"dir":0},"_x":6,"_y":0}},{"rid":1079,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":1},"dir":0},"_x":6,"_y":1}},{"rid":1080,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":2},"dir":0},"_x":6,"_y":2}},{"rid":1081,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":3},"dir":0},"_x":6,"_y":3}},{"rid":1082,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":4},"dir":0},"_x":6,"_y":4}},{"rid":1083,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":5},"dir":0},"_x":6,"_y":5}},{"rid":1084,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":6},"dir":0},"_x":6,"_y":6}},{"rid":1085,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":7},"dir":0},"_x":6,"_y":7}},{"rid":1086,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":8},"dir":4},"_x":6,"_y":8}},{"rid":1087,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":9},"dir":4},"_x":6,"_y":9}},{"rid":1088,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":10},"dir":4},"_x":6,"_y":10}},{"rid":1089,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":11},"dir":4},"_x":6,"_y":11}},{"rid":1090,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":12},"dir":4},"_x":6,"_y":12}},{"rid":1091,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":13},"dir":4},"_x":6,"_y":13}},{"rid":1092,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":0},"dir":0},"_x":7,"_y":0}},{"rid":1093,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":1},"dir":0},"_x":7,"_y":1}},{"rid":1094,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":2},"dir":0},"_x":7,"_y":2}},{"rid":1095,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":3},"dir":0},"_x":7,"_y":3}},{"rid":1096,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":4},"dir":0},"_x":7,"_y":4}},{"rid":1097,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":5},"dir":0},"_x":7,"_y":5}},{"rid":1098,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":6},"dir":0},"_x":7,"_y":6}},{"rid":1099,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":7},"dir":0},"_x":7,"_y":7}},{"rid":1100,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":8},"dir":4},"_x":7,"_y":8}},{"rid":1101,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":9},"dir":4},"_x":7,"_y":9}},{"rid":1102,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":10},"dir":4},"_x":7,"_y":10}},{"rid":1103,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":11},"dir":4},"_x":7,"_y":11}},{"rid":1104,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":12},"dir":4},"_x":7,"_y":12}},{"rid":1105,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":13},"dir":4},"_x":7,"_y":13}},{"rid":1106,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":0},"dir":0},"_x":8,"_y":0}},{"rid":1107,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":1},"dir":0},"_x":8,"_y":1}},{"rid":1108,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":2},"dir":0},"_x":8,"_y":2}},{"rid":1109,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":3},"dir":0},"_x":8,"_y":3}},{"rid":1110,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":4},"dir":0},"_x":8,"_y":4}},{"rid":1111,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":5},"dir":0},"_x":8,"_y":5}},{"rid":1112,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":6},"dir":0},"_x":8,"_y":6}},{"rid":1113,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":7},"dir":0},"_x":8,"_y":7}},{"rid":1114,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":8},"dir":4},"_x":8,"_y":8}},{"rid":1115,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":9},"dir":4},"_x":8,"_y":9}},{"rid":1116,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":10},"dir":4},"_x":8,"_y":10}},{"rid":1117,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":11},"dir":4},"_x":8,"_y":11}},{"rid":1118,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":12},"dir":4},"_x":8,"_y":12}},{"rid":1119,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":13},"dir":4},"_x":8,"_y":13}},{"rid":1120,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":0},"dir":0},"_x":9,"_y":0}},{"rid":1121,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":1},"dir":0},"_x":9,"_y":1}},{"rid":1122,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":2},"dir":0},"_x":9,"_y":2}},{"rid":1123,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":3},"dir":0},"_x":9,"_y":3}},{"rid":1124,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":4},"dir":0},"_x":9,"_y":4}},{"rid":1125,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":5},"dir":0},"_x":9,"_y":5}},{"rid":1126,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":6},"dir":0},"_x":9,"_y":6}},{"rid":1127,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":7},"dir":0},"_x":9,"_y":7}},{"rid":1128,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":8},"dir":4},"_x":9,"_y":8}},{"rid":1129,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":9},"dir":4},"_x":9,"_y":9}},{"rid":1130,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":10},"dir":4},"_x":9,"_y":10}},{"rid":1131,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":11},"dir":4},"_x":9,"_y":11}},{"rid":1132,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":12},"dir":4},"_x":9,"_y":12}},{"rid":1133,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":0},"dir":0},"_x":10,"_y":0}},{"rid":1134,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":1},"dir":0},"_x":10,"_y":1}},{"rid":1135,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":2},"dir":0},"_x":10,"_y":2}},{"rid":1136,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":3},"dir":0},"_x":10,"_y":3}},{"rid":1137,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":4},"dir":0},"_x":10,"_y":4}},{"rid":1138,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":5},"dir":0},"_x":10,"_y":5}},{"rid":1139,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":6},"dir":0},"_x":10,"_y":6}},{"rid":1140,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":7},"dir":0},"_x":10,"_y":7}},{"rid":1141,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":8},"dir":4},"_x":10,"_y":8}},{"rid":1142,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":9},"dir":4},"_x":10,"_y":9}},{"rid":1143,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":10},"dir":4},"_x":10,"_y":10}},{"rid":1144,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":11},"dir":4},"_x":10,"_y":11}},{"rid":1145,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":12},"dir":4},"_x":10,"_y":12}},{"rid":1146,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":0},"dir":0},"_x":11,"_y":0}},{"rid":1147,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":1},"dir":0},"_x":11,"_y":1}},{"rid":1148,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":2},"dir":0},"_x":11,"_y":2}},{"rid":1149,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":3},"dir":0},"_x":11,"_y":3}},{"rid":1150,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":4},"dir":4},"_x":11,"_y":4}},{"rid":1151,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":5},"dir":4},"_x":11,"_y":5}},{"rid":1152,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":6},"dir":4},"_x":11,"_y":6}},{"rid":1153,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":7},"dir":4},"_x":11,"_y":7}},{"rid":1154,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":8},"dir":4},"_x":11,"_y":8}},{"rid":1155,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":9},"dir":4},"_x":11,"_y":9}},{"rid":1156,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":10},"dir":4},"_x":11,"_y":10}},{"rid":1157,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":11},"dir":4},"_x":11,"_y":11}},{"rid":1158,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":0},"dir":0},"_x":12,"_y":0}},{"rid":1159,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":1},"dir":0},"_x":12,"_y":1}},{"rid":1160,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":2},"dir":0},"_x":12,"_y":2}},{"rid":1161,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":3},"dir":0},"_x":12,"_y":3}},{"rid":1162,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":4},"dir":4},"_x":12,"_y":4}},{"rid":1163,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":5},"dir":4},"_x":12,"_y":5}},{"rid":1164,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":6},"dir":4},"_x":12,"_y":6}},{"rid":1165,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":7},"dir":4},"_x":12,"_y":7}},{"rid":1166,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":8},"dir":4},"_x":12,"_y":8}},{"rid":1167,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":9},"dir":4},"_x":12,"_y":9}},{"rid":1168,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":10},"dir":4},"_x":12,"_y":10}},{"rid":1169,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":11},"dir":4},"_x":12,"_y":11}},{"rid":1170,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":0},"dir":0},"_x":13,"_y":0}},{"rid":1171,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":1},"dir":0},"_x":13,"_y":1}},{"rid":1172,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":2},"dir":0},"_x":13,"_y":2}},{"rid":1173,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":3},"dir":0},"_x":13,"_y":3}},{"rid":1174,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":4},"dir":4},"_x":13,"_y":4}},{"rid":1175,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":5},"dir":4},"_x":13,"_y":5}},{"rid":1176,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":6},"dir":4},"_x":13,"_y":6}},{"rid":1177,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":7},"dir":4},"_x":13,"_y":7}},{"rid":1178,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":8},"dir":4},"_x":13,"_y":8}},{"rid":1179,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":9},"dir":4},"_x":13,"_y":9}},{"rid":1180,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":10},"dir":4},"_x":13,"_y":10}},{"rid":1181,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":11},"dir":4},"_x":13,"_y":11}},{"rid":1182,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":0},"dir":0},"_x":14,"_y":0}},{"rid":1183,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":1},"dir":0},"_x":14,"_y":1}},{"rid":1184,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":2},"dir":0},"_x":14,"_y":2}},{"rid":1185,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":3},"dir":0},"_x":14,"_y":3}},{"rid":1186,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":4},"dir":4},"_x":14,"_y":4}},{"rid":1187,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":5},"dir":4},"_x":14,"_y":5}},{"rid":1188,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":6},"dir":4},"_x":14,"_y":6}},{"rid":1189,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":7},"dir":4},"_x":14,"_y":7}},{"rid":1190,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":8},"dir":4},"_x":14,"_y":8}},{"rid":1191,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":0},"dir":0},"_x":15,"_y":0}},{"rid":1192,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":1},"dir":0},"_x":15,"_y":1}},{"rid":1193,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":2},"dir":0},"_x":15,"_y":2}},{"rid":1194,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":3},"dir":0},"_x":15,"_y":3}},{"rid":1195,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":4},"dir":4},"_x":15,"_y":4}},{"rid":1196,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":5},"dir":4},"_x":15,"_y":5}},{"rid":1197,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":6},"dir":4},"_x":15,"_y":6}},{"rid":1198,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":7},"dir":4},"_x":15,"_y":7}},{"rid":1199,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":0,"y":0},"dir":0},"_x":0,"_y":0}},{"rid":1200,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":0,"y":1},"dir":0},"_x":0,"_y":1}},{"rid":1201,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":0,"y":2},"dir":0},"_x":0,"_y":2}},{"rid":1202,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":0,"y":3},"dir":0},"_x":0,"_y":3}},{"rid":1203,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":1,"y":0},"dir":0},"_x":1,"_y":0}},{"rid":1204,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":1,"y":1},"dir":0},"_x":1,"_y":1}},{"rid":1205,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":1,"y":2},"dir":0},"_x":1,"_y":2}},{"rid":1206,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":1,"y":3},"dir":0},"_x":1,"_y":3}},{"rid":1207,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":1,"y":7},"dir":4},"_x":1,"_y":7}},{"rid":1208,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":2,"y":0},"dir":0},"_x":2,"_y":0}},{"rid":1209,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":2,"y":1},"dir":0},"_x":2,"_y":1}},{"rid":1210,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":2,"y":2},"dir":0},"_x":2,"_y":2}},{"rid":1211,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":2,"y":3},"dir":0},"_x":2,"_y":3}},{"rid":1212,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":2,"y":4},"dir":0},"_x":2,"_y":4}},{"rid":1213,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"airlock_civilian","origin":{"x":2,"y":5},"dir":2},"_x":2,"_y":5}},{"rid":1214,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":2,"y":6},"dir":0},"_x":2,"_y":6}},{"rid":1215,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steelreinforced","origin":{"x":2,"y":7},"dir":4},"_x":2,"_y":7}},{"rid":1216,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steelreinforced","origin":{"x":2,"y":8},"dir":4},"_x":2,"_y":8}},{"rid":1217,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"airlock_security","origin":{"x":2,"y":9},"dir":2},"_x":2,"_y":9}},{"rid":1218,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steelreinforced","origin":{"x":2,"y":10},"dir":4},"_x":2,"_y":10}},{"rid":1219,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steelreinforced","origin":{"x":2,"y":11},"dir":4},"_x":2,"_y":11}},{"rid":1220,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steelreinforced","origin":{"x":2,"y":12},"dir":4},"_x":2,"_y":12}},{"rid":1221,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":3,"y":0},"dir":0},"_x":3,"_y":0}},{"rid":1222,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":3,"y":1},"dir":0},"_x":3,"_y":1}},{"rid":1223,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":3,"y":2},"dir":0},"_x":3,"_y":2}},{"rid":1224,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":3,"y":3},"dir":0},"_x":3,"_y":3}},{"rid":1225,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":3,"y":4},"dir":0},"_x":3,"_y":4}},{"rid":1226,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":3,"y":5},"dir":0},"_x":3,"_y":5}},{"rid":1227,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":3,"y":6},"dir":0},"_x":3,"_y":6}},{"rid":1228,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steelreinforced","origin":{"x":3,"y":7},"dir":4},"_x":3,"_y":7}},{"rid":1229,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":3,"y":8},"dir":4},"_x":3,"_y":8}},{"rid":1230,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":3,"y":9},"dir":4},"_x":3,"_y":9}},{"rid":1231,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":3,"y":10},"dir":4},"_x":3,"_y":10}},{"rid":1232,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":3,"y":11},"dir":4},"_x":3,"_y":11}},{"rid":1233,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steelreinforced","origin":{"x":3,"y":12},"dir":4},"_x":3,"_y":12}},{"rid":1234,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":4,"y":0},"dir":2},"_x":4,"_y":0}},{"rid":1235,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":4,"y":1},"dir":2},"_x":4,"_y":1}},{"rid":1236,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":4,"y":2},"dir":4},"_x":4,"_y":2}},{"rid":1237,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_carpet","origin":{"x":4,"y":3},"dir":4},"_x":4,"_y":3}},{"rid":1238,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_carpet","origin":{"x":4,"y":4},"dir":4},"_x":4,"_y":4}},{"rid":1239,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_carpet","origin":{"x":4,"y":5},"dir":4},"_x":4,"_y":5}},{"rid":1240,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":4,"y":6},"dir":0},"_x":4,"_y":6}},{"rid":1241,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"window_steelreinforced","origin":{"x":4,"y":7},"dir":4},"_x":4,"_y":7}},{"rid":1242,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":4,"y":8},"dir":4},"_x":4,"_y":8}},{"rid":1243,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":4,"y":9},"dir":4},"_x":4,"_y":9}},{"rid":1244,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":4,"y":10},"dir":4},"_x":4,"_y":10}},{"rid":1245,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":4,"y":11},"dir":4},"_x":4,"_y":11}},{"rid":1246,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"window_steelreinforced","origin":{"x":4,"y":12},"dir":4},"_x":4,"_y":12}},{"rid":1247,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"window_steelreinforced","origin":{"x":4,"y":13},"dir":4},"_x":4,"_y":13}},{"rid":1248,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":5,"y":0},"dir":2},"_x":5,"_y":0}},{"rid":1249,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":5,"y":1},"dir":4},"_x":5,"_y":1}},{"rid":1250,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":5,"y":2},"dir":4},"_x":5,"_y":2}},{"rid":1251,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_carpet","origin":{"x":5,"y":3},"dir":4},"_x":5,"_y":3}},{"rid":1252,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_carpet","origin":{"x":5,"y":4},"dir":4},"_x":5,"_y":4}},{"rid":1253,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_carpet","origin":{"x":5,"y":5},"dir":4},"_x":5,"_y":5}},{"rid":1254,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":5,"y":6},"dir":0},"_x":5,"_y":6}},{"rid":1255,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"airlock_security","origin":{"x":5,"y":7},"dir":4},"_x":5,"_y":7}},{"rid":1256,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":5,"y":8},"dir":4},"_x":5,"_y":8}},{"rid":1257,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":5,"y":9},"dir":4},"_x":5,"_y":9}},{"rid":1258,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":5,"y":10},"dir":4},"_x":5,"_y":10}},{"rid":1259,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":5,"y":11},"dir":4},"_x":5,"_y":11}},{"rid":1260,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":5,"y":12},"dir":4},"_x":5,"_y":12}},{"rid":1261,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"window_steelreinforced","origin":{"x":5,"y":13},"dir":4},"_x":5,"_y":13}},{"rid":1262,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":6,"y":0},"dir":2},"_x":6,"_y":0}},{"rid":1263,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":6,"y":1},"dir":4},"_x":6,"_y":1}},{"rid":1264,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":6,"y":2},"dir":4},"_x":6,"_y":2}},{"rid":1265,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_carpet","origin":{"x":6,"y":3},"dir":4},"_x":6,"_y":3}},{"rid":1266,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_carpet","origin":{"x":6,"y":4},"dir":4},"_x":6,"_y":4}},{"rid":1267,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_carpet","origin":{"x":6,"y":5},"dir":4},"_x":6,"_y":5}},{"rid":1268,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":6,"y":6},"dir":0},"_x":6,"_y":6}},{"rid":1269,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"window_steelreinforced","origin":{"x":6,"y":7},"dir":4},"_x":6,"_y":7}},{"rid":1270,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":6,"y":8},"dir":4},"_x":6,"_y":8}},{"rid":1271,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":6,"y":9},"dir":4},"_x":6,"_y":9}},{"rid":1272,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":6,"y":10},"dir":4},"_x":6,"_y":10}},{"rid":1273,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":6,"y":11},"dir":4},"_x":6,"_y":11}},{"rid":1274,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":6,"y":12},"dir":4},"_x":6,"_y":12}},{"rid":1275,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"window_steelreinforced","origin":{"x":6,"y":13},"dir":4},"_x":6,"_y":13}},{"rid":1276,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":7,"y":0},"dir":2},"_x":7,"_y":0}},{"rid":1277,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":7,"y":1},"dir":4},"_x":7,"_y":1}},{"rid":1278,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":7,"y":2},"dir":4},"_x":7,"_y":2}},{"rid":1279,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_carpet","origin":{"x":7,"y":3},"dir":4},"_x":7,"_y":3}},{"rid":1280,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_carpet","origin":{"x":7,"y":4},"dir":4},"_x":7,"_y":4}},{"rid":1281,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_carpet","origin":{"x":7,"y":5},"dir":4},"_x":7,"_y":5}},{"rid":1282,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":7,"y":6},"dir":0},"_x":7,"_y":6}},{"rid":1283,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"airlock_security","origin":{"x":7,"y":7},"dir":4},"_x":7,"_y":7}},{"rid":1284,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":7,"y":8},"dir":4},"_x":7,"_y":8}},{"rid":1285,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":7,"y":9},"dir":4},"_x":7,"_y":9}},{"rid":1286,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":7,"y":10},"dir":4},"_x":7,"_y":10}},{"rid":1287,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":7,"y":11},"dir":4},"_x":7,"_y":11}},{"rid":1288,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":7,"y":12},"dir":4},"_x":7,"_y":12}},{"rid":1289,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"window_steelreinforced","origin":{"x":7,"y":13},"dir":4},"_x":7,"_y":13}},{"rid":1290,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":8,"y":0},"dir":2},"_x":8,"_y":0}},{"rid":1291,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":8,"y":1},"dir":2},"_x":8,"_y":1}},{"rid":1292,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":8,"y":2},"dir":4},"_x":8,"_y":2}},{"rid":1293,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_carpet","origin":{"x":8,"y":3},"dir":4},"_x":8,"_y":3}},{"rid":1294,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_carpet","origin":{"x":8,"y":4},"dir":4},"_x":8,"_y":4}},{"rid":1295,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_carpet","origin":{"x":8,"y":5},"dir":4},"_x":8,"_y":5}},{"rid":1296,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":8,"y":6},"dir":0},"_x":8,"_y":6}},{"rid":1297,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"window_steelreinforced","origin":{"x":8,"y":7},"dir":4},"_x":8,"_y":7}},{"rid":1298,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":8,"y":8},"dir":4},"_x":8,"_y":8}},{"rid":1299,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":8,"y":9},"dir":4},"_x":8,"_y":9}},{"rid":1300,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":8,"y":10},"dir":4},"_x":8,"_y":10}},{"rid":1301,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":8,"y":11},"dir":4},"_x":8,"_y":11}},{"rid":1302,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"window_steelreinforced","origin":{"x":8,"y":12},"dir":4},"_x":8,"_y":12}},{"rid":1303,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"window_steelreinforced","origin":{"x":8,"y":13},"dir":4},"_x":8,"_y":13}},{"rid":1304,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":9,"y":0},"dir":2},"_x":9,"_y":0}},{"rid":1305,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":9,"y":1},"dir":2},"_x":9,"_y":1}},{"rid":1306,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":9,"y":2},"dir":4},"_x":9,"_y":2}},{"rid":1307,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":9,"y":3},"dir":0},"_x":9,"_y":3}},{"rid":1308,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":9,"y":4},"dir":0},"_x":9,"_y":4}},{"rid":1309,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":9,"y":5},"dir":0},"_x":9,"_y":5}},{"rid":1310,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":9,"y":6},"dir":0},"_x":9,"_y":6}},{"rid":1311,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steelreinforced","origin":{"x":9,"y":7},"dir":4},"_x":9,"_y":7}},{"rid":1312,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":9,"y":8},"dir":4},"_x":9,"_y":8}},{"rid":1313,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":9,"y":9},"dir":4},"_x":9,"_y":9}},{"rid":1314,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":9,"y":10},"dir":4},"_x":9,"_y":10}},{"rid":1315,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_greydark","origin":{"x":9,"y":11},"dir":4},"_x":9,"_y":11}},{"rid":1316,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steelreinforced","origin":{"x":9,"y":12},"dir":4},"_x":9,"_y":12}},{"rid":1317,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":10,"y":0},"dir":0},"_x":10,"_y":0}},{"rid":1318,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":10,"y":1},"dir":0},"_x":10,"_y":1}},{"rid":1319,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":10,"y":2},"dir":0},"_x":10,"_y":2}},{"rid":1320,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":10,"y":3},"dir":2},"_x":10,"_y":3}},{"rid":1321,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":10,"y":4},"dir":0},"_x":10,"_y":4}},{"rid":1322,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"airlock_civilian","origin":{"x":10,"y":5},"dir":2},"_x":10,"_y":5}},{"rid":1323,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":10,"y":6},"dir":2},"_x":10,"_y":6}},{"rid":1324,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steelreinforced","origin":{"x":10,"y":7},"dir":4},"_x":10,"_y":7}},{"rid":1325,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steelreinforced","origin":{"x":10,"y":8},"dir":4},"_x":10,"_y":8}},{"rid":1326,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"airlock_security","origin":{"x":10,"y":9},"dir":2},"_x":10,"_y":9}},{"rid":1327,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steelreinforced","origin":{"x":10,"y":10},"dir":4},"_x":10,"_y":10}},{"rid":1328,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steelreinforced","origin":{"x":10,"y":11},"dir":4},"_x":10,"_y":11}},{"rid":1329,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steelreinforced","origin":{"x":10,"y":12},"dir":4},"_x":10,"_y":12}},{"rid":1330,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":11,"y":0},"dir":0},"_x":11,"_y":0}},{"rid":1331,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":11,"y":1},"dir":0},"_x":11,"_y":1}},{"rid":1332,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":11,"y":2},"dir":0},"_x":11,"_y":2}},{"rid":1333,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":11,"y":3},"dir":0},"_x":11,"_y":3}},{"rid":1334,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":11,"y":7},"dir":4},"_x":11,"_y":7}},{"rid":1335,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":12,"y":0},"dir":0},"_x":12,"_y":0}},{"rid":1336,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":12,"y":1},"dir":0},"_x":12,"_y":1}},{"rid":1337,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":12,"y":2},"dir":0},"_x":12,"_y":2}},{"rid":1338,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":12,"y":3},"dir":0},"_x":12,"_y":3}},{"rid":1339,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":13,"y":0},"dir":0},"_x":13,"_y":0}},{"rid":1340,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":13,"y":1},"dir":0},"_x":13,"_y":1}},{"rid":1341,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":13,"y":2},"dir":0},"_x":13,"_y":2}},{"rid":1342,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":13,"y":3},"dir":0},"_x":13,"_y":3}},{"rid":1343,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":14,"y":0},"dir":0},"_x":14,"_y":0}},{"rid":1344,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":14,"y":1},"dir":0},"_x":14,"_y":1}},{"rid":1345,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":14,"y":2},"dir":0},"_x":14,"_y":2}},{"rid":1346,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":14,"y":3},"dir":0},"_x":14,"_y":3}},{"rid":1347,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":15,"y":0},"dir":0},"_x":15,"_y":0}},{"rid":1348,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":15,"y":1},"dir":0},"_x":15,"_y":1}},{"rid":1349,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":15,"y":2},"dir":0},"_x":15,"_y":2}},{"rid":1350,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":15,"y":3},"dir":0},"_x":15,"_y":3}},{"rid":1351,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_bulb_fixture","origin":{"x":2,"y":4},"dir":2}],"x":2,"y":4}},{"rid":1352,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_tube_fixture","origin":{"x":6,"y":7},"dir":0},{"tileObjectSOName":"light_tube_fixture","origin":{"x":6,"y":7},"dir":4}],"x":6,"y":7}},{"rid":1353,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_tube_fixture","origin":{"x":6,"y":13},"dir":4}],"x":6,"y":13}},{"rid":1354,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_bulb_fixture","origin":{"x":10,"y":4},"dir":6}],"x":10,"y":4}},{"rid":1355,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_tube_fixture","origin":{"x":15,"y":3},"dir":4}],"x":15,"y":3}},{"rid":1356,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"airalarm","origin":{"x":2,"y":11},"dir":2}],"x":2,"y":11}},{"rid":1357,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"apc","origin":{"x":3,"y":7},"dir":0}],"x":3,"y":7}},{"rid":1358,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_switch","origin":{"x":9,"y":7},"dir":0}],"x":9,"y":7}},{"rid":1359,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"firealarm","origin":{"x":10,"y":11},"dir":6}],"x":10,"y":11}},{"rid":1360,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"apc","origin":{"x":12,"y":3},"dir":0}],"x":12,"y":3}},{"rid":1361,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"JukeboxBlueGreen","origin":{"x":2,"y":2},"dir":4},"_x":2,"_y":2}},{"rid":1362,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plant0","origin":{"x":3,"y":8},"dir":0},"_x":3,"_y":8}},{"rid":1363,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_steel","origin":{"x":3,"y":11},"dir":4},"_x":3,"_y":11}},{"rid":1364,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"water_cooler","origin":{"x":4,"y":8},"dir":0},"_x":4,"_y":8}},{"rid":1365,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_steel","origin":{"x":4,"y":11},"dir":4},"_x":4,"_y":11}},{"rid":1366,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"vent","origin":{"x":5,"y":9},"dir":0},"_x":5,"_y":9}},{"rid":1367,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"chair_office","origin":{"x":5,"y":11},"dir":0},"_x":5,"_y":11}},{"rid":1368,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_steel","origin":{"x":5,"y":12},"dir":4},"_x":5,"_y":12}},{"rid":1369,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_steel","origin":{"x":6,"y":12},"dir":4},"_x":6,"_y":12}},{"rid":1370,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"scrubber","origin":{"x":7,"y":9},"dir":0},"_x":7,"_y":9}},{"rid":1371,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"chair_office","origin":{"x":7,"y":11},"dir":0},"_x":7,"_y":11}},{"rid":1372,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_steel","origin":{"x":7,"y":12},"dir":4},"_x":7,"_y":12}},{"rid":1373,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"nuke_cart","origin":{"x":8,"y":8},"dir":2},"_x":8,"_y":8}},{"rid":1374,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_steel","origin":{"x":8,"y":11},"dir":4},"_x":8,"_y":11}},{"rid":1375,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"disposal_bin","origin":{"x":9,"y":8},"dir":0},"_x":9,"_y":8}},{"rid":1376,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_steel","origin":{"x":9,"y":11},"dir":4},"_x":9,"_y":11}},{"rid":1377,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":8},"dir":0},"_x":0,"_y":8}},{"rid":1378,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":9},"dir":0},"_x":0,"_y":9}},{"rid":1379,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":10},"dir":0},"_x":0,"_y":10}},{"rid":1380,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":11},"dir":0},"_x":0,"_y":11}},{"rid":1381,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":12},"dir":0},"_x":0,"_y":12}},{"rid":1382,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":13},"dir":0},"_x":0,"_y":13}},{"rid":1383,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":14},"dir":0},"_x":0,"_y":14}},{"rid":1384,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":15},"dir":0},"_x":0,"_y":15}},{"rid":1385,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":8},"dir":0},"_x":1,"_y":8}},{"rid":1386,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":9},"dir":0},"_x":1,"_y":9}},{"rid":1387,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":10},"dir":0},"_x":1,"_y":10}},{"rid":1388,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":11},"dir":0},"_x":1,"_y":11}},{"rid":1389,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":12},"dir":0},"_x":1,"_y":12}},{"rid":1390,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":13},"dir":0},"_x":1,"_y":13}},{"rid":1391,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":14},"dir":0},"_x":1,"_y":14}},{"rid":1392,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":15},"dir":0},"_x":1,"_y":15}},{"rid":1393,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":8},"dir":0},"_x":2,"_y":8}},{"rid":1394,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":9},"dir":0},"_x":2,"_y":9}},{"rid":1395,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":10},"dir":0},"_x":2,"_y":10}},{"rid":1396,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":11},"dir":0},"_x":2,"_y":11}},{"rid":1397,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":12},"dir":0},"_x":2,"_y":12}},{"rid":1398,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":13},"dir":0},"_x":2,"_y":13}},{"rid":1399,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":14},"dir":0},"_x":2,"_y":14}},{"rid":1400,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":2,"y":15},"dir":0},"_x":2,"_y":15}},{"rid":1401,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":8},"dir":0},"_x":3,"_y":8}},{"rid":1402,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":9},"dir":0},"_x":3,"_y":9}},{"rid":1403,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":10},"dir":0},"_x":3,"_y":10}},{"rid":1404,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":11},"dir":0},"_x":3,"_y":11}},{"rid":1405,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":12},"dir":0},"_x":3,"_y":12}},{"rid":1406,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":13},"dir":0},"_x":3,"_y":13}},{"rid":1407,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":14},"dir":0},"_x":3,"_y":14}},{"rid":1408,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":3,"y":15},"dir":0},"_x":3,"_y":15}},{"rid":1409,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":7},"dir":6},"_x":4,"_y":7}},{"rid":1410,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":8},"dir":2},"_x":4,"_y":8}},{"rid":1411,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":9},"dir":2},"_x":4,"_y":9}},{"rid":1412,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":10},"dir":2},"_x":4,"_y":10}},{"rid":1413,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":11},"dir":2},"_x":4,"_y":11}},{"rid":1414,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":12},"dir":2},"_x":4,"_y":12}},{"rid":1415,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":13},"dir":2},"_x":4,"_y":13}},{"rid":1416,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":14},"dir":2},"_x":4,"_y":14}},{"rid":1417,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":4,"y":15},"dir":0},"_x":4,"_y":15}},{"rid":1418,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":5},"dir":6},"_x":5,"_y":5}},{"rid":1419,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":6},"dir":6},"_x":5,"_y":6}},{"rid":1420,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":7},"dir":6},"_x":5,"_y":7}},{"rid":1421,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":8},"dir":2},"_x":5,"_y":8}},{"rid":1422,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":9},"dir":2},"_x":5,"_y":9}},{"rid":1423,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":10},"dir":2},"_x":5,"_y":10}},{"rid":1424,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":11},"dir":2},"_x":5,"_y":11}},{"rid":1425,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":12},"dir":2},"_x":5,"_y":12}},{"rid":1426,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":13},"dir":2},"_x":5,"_y":13}},{"rid":1427,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":14},"dir":2},"_x":5,"_y":14}},{"rid":1428,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":5,"y":15},"dir":0},"_x":5,"_y":15}},{"rid":1429,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":5},"dir":6},"_x":6,"_y":5}},{"rid":1430,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":6},"dir":6},"_x":6,"_y":6}},{"rid":1431,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":7},"dir":6},"_x":6,"_y":7}},{"rid":1432,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":8},"dir":2},"_x":6,"_y":8}},{"rid":1433,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":9},"dir":2},"_x":6,"_y":9}},{"rid":1434,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":10},"dir":2},"_x":6,"_y":10}},{"rid":1435,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":11},"dir":2},"_x":6,"_y":11}},{"rid":1436,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":12},"dir":2},"_x":6,"_y":12}},{"rid":1437,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":13},"dir":2},"_x":6,"_y":13}},{"rid":1438,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":14},"dir":2},"_x":6,"_y":14}},{"rid":1439,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":6,"y":15},"dir":0},"_x":6,"_y":15}},{"rid":1440,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":5},"dir":6},"_x":7,"_y":5}},{"rid":1441,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":6},"dir":6},"_x":7,"_y":6}},{"rid":1442,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":7},"dir":6},"_x":7,"_y":7}},{"rid":1443,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":8},"dir":2},"_x":7,"_y":8}},{"rid":1444,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":9},"dir":2},"_x":7,"_y":9}},{"rid":1445,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":10},"dir":2},"_x":7,"_y":10}},{"rid":1446,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":11},"dir":2},"_x":7,"_y":11}},{"rid":1447,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":12},"dir":2},"_x":7,"_y":12}},{"rid":1448,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":13},"dir":2},"_x":7,"_y":13}},{"rid":1449,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":14},"dir":2},"_x":7,"_y":14}},{"rid":1450,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":7,"y":15},"dir":0},"_x":7,"_y":15}},{"rid":1451,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":7},"dir":6},"_x":8,"_y":7}},{"rid":1452,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":8},"dir":2},"_x":8,"_y":8}},{"rid":1453,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":9},"dir":2},"_x":8,"_y":9}},{"rid":1454,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":10},"dir":2},"_x":8,"_y":10}},{"rid":1455,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":11},"dir":2},"_x":8,"_y":11}},{"rid":1456,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":12},"dir":2},"_x":8,"_y":12}},{"rid":1457,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":13},"dir":2},"_x":8,"_y":13}},{"rid":1458,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":14},"dir":2},"_x":8,"_y":14}},{"rid":1459,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":8,"y":15},"dir":0},"_x":8,"_y":15}},{"rid":1460,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":8},"dir":0},"_x":9,"_y":8}},{"rid":1461,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":9},"dir":0},"_x":9,"_y":9}},{"rid":1462,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":10},"dir":0},"_x":9,"_y":10}},{"rid":1463,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":11},"dir":0},"_x":9,"_y":11}},{"rid":1464,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":12},"dir":0},"_x":9,"_y":12}},{"rid":1465,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":13},"dir":0},"_x":9,"_y":13}},{"rid":1466,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":14},"dir":0},"_x":9,"_y":14}},{"rid":1467,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":15},"dir":0},"_x":9,"_y":15}},{"rid":1468,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":8},"dir":0},"_x":10,"_y":8}},{"rid":1469,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":9},"dir":0},"_x":10,"_y":9}},{"rid":1470,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":10},"dir":0},"_x":10,"_y":10}},{"rid":1471,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":11},"dir":0},"_x":10,"_y":11}},{"rid":1472,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":12},"dir":0},"_x":10,"_y":12}},{"rid":1473,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":13},"dir":0},"_x":10,"_y":13}},{"rid":1474,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":14},"dir":0},"_x":10,"_y":14}},{"rid":1475,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":15},"dir":0},"_x":10,"_y":15}},{"rid":1476,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":8},"dir":0},"_x":11,"_y":8}},{"rid":1477,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":9},"dir":0},"_x":11,"_y":9}},{"rid":1478,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":10},"dir":0},"_x":11,"_y":10}},{"rid":1479,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":11},"dir":0},"_x":11,"_y":11}},{"rid":1480,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":12},"dir":0},"_x":11,"_y":12}},{"rid":1481,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":13},"dir":0},"_x":11,"_y":13}},{"rid":1482,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":14},"dir":0},"_x":11,"_y":14}},{"rid":1483,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":15},"dir":0},"_x":11,"_y":15}},{"rid":1484,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":8},"dir":0},"_x":12,"_y":8}},{"rid":1485,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":9},"dir":0},"_x":12,"_y":9}},{"rid":1486,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":10},"dir":0},"_x":12,"_y":10}},{"rid":1487,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":11},"dir":0},"_x":12,"_y":11}},{"rid":1488,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":12},"dir":0},"_x":12,"_y":12}},{"rid":1489,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":13},"dir":0},"_x":12,"_y":13}},{"rid":1490,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":14},"dir":0},"_x":12,"_y":14}},{"rid":1491,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":15},"dir":0},"_x":12,"_y":15}},{"rid":1492,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":8},"dir":0},"_x":13,"_y":8}},{"rid":1493,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":9},"dir":0},"_x":13,"_y":9}},{"rid":1494,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":10},"dir":0},"_x":13,"_y":10}},{"rid":1495,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":11},"dir":0},"_x":13,"_y":11}},{"rid":1496,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":12},"dir":0},"_x":13,"_y":12}},{"rid":1497,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":13},"dir":0},"_x":13,"_y":13}},{"rid":1498,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":14},"dir":0},"_x":13,"_y":14}},{"rid":1499,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":15},"dir":0},"_x":13,"_y":15}},{"rid":1500,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":8},"dir":0},"_x":14,"_y":8}},{"rid":1501,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":9},"dir":0},"_x":14,"_y":9}},{"rid":1502,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":10},"dir":0},"_x":14,"_y":10}},{"rid":1503,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":11},"dir":0},"_x":14,"_y":11}},{"rid":1504,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":12},"dir":0},"_x":14,"_y":12}},{"rid":1505,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":13},"dir":0},"_x":14,"_y":13}},{"rid":1506,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":14},"dir":0},"_x":14,"_y":14}},{"rid":1507,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":15},"dir":0},"_x":14,"_y":15}},{"rid":1508,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":8},"dir":0},"_x":15,"_y":8}},{"rid":1509,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":9},"dir":0},"_x":15,"_y":9}},{"rid":1510,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":10},"dir":0},"_x":15,"_y":10}},{"rid":1511,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":11},"dir":0},"_x":15,"_y":11}},{"rid":1512,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":12},"dir":0},"_x":15,"_y":12}},{"rid":1513,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":13},"dir":0},"_x":15,"_y":13}},{"rid":1514,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":14},"dir":0},"_x":15,"_y":14}},{"rid":1515,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":15},"dir":0},"_x":15,"_y":15}},{"rid":1516,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":0,"y":8},"dir":0},"_x":0,"_y":8}},{"rid":1517,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":0,"y":9},"dir":0},"_x":0,"_y":9}},{"rid":1518,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":0,"y":10},"dir":0},"_x":0,"_y":10}},{"rid":1519,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":0,"y":11},"dir":0},"_x":0,"_y":11}},{"rid":1520,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":0,"y":12},"dir":0},"_x":0,"_y":12}},{"rid":1521,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":0,"y":13},"dir":0},"_x":0,"_y":13}},{"rid":1522,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":0,"y":14},"dir":0},"_x":0,"_y":14}},{"rid":1523,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":0,"y":15},"dir":0},"_x":0,"_y":15}},{"rid":1524,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":1,"y":8},"dir":0},"_x":1,"_y":8}},{"rid":1525,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":1,"y":9},"dir":0},"_x":1,"_y":9}},{"rid":1526,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":1,"y":10},"dir":0},"_x":1,"_y":10}},{"rid":1527,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":1,"y":11},"dir":0},"_x":1,"_y":11}},{"rid":1528,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":1,"y":12},"dir":0},"_x":1,"_y":12}},{"rid":1529,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":1,"y":13},"dir":0},"_x":1,"_y":13}},{"rid":1530,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":1,"y":14},"dir":0},"_x":1,"_y":14}},{"rid":1531,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":1,"y":15},"dir":0},"_x":1,"_y":15}},{"rid":1532,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":2,"y":8},"dir":0},"_x":2,"_y":8}},{"rid":1533,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":2,"y":9},"dir":0},"_x":2,"_y":9}},{"rid":1534,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":2,"y":10},"dir":0},"_x":2,"_y":10}},{"rid":1535,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":2,"y":11},"dir":0},"_x":2,"_y":11}},{"rid":1536,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":2,"y":12},"dir":0},"_x":2,"_y":12}},{"rid":1537,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":2,"y":13},"dir":0},"_x":2,"_y":13}},{"rid":1538,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":2,"y":14},"dir":0},"_x":2,"_y":14}},{"rid":1539,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":2,"y":15},"dir":0},"_x":2,"_y":15}},{"rid":1540,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":3,"y":8},"dir":0},"_x":3,"_y":8}},{"rid":1541,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":3,"y":9},"dir":0},"_x":3,"_y":9}},{"rid":1542,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":3,"y":10},"dir":0},"_x":3,"_y":10}},{"rid":1543,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":3,"y":11},"dir":0},"_x":3,"_y":11}},{"rid":1544,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":3,"y":12},"dir":0},"_x":3,"_y":12}},{"rid":1545,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":3,"y":13},"dir":0},"_x":3,"_y":13}},{"rid":1546,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":3,"y":14},"dir":0},"_x":3,"_y":14}},{"rid":1547,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":3,"y":15},"dir":0},"_x":3,"_y":15}},{"rid":1548,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":4,"y":8},"dir":0},"_x":4,"_y":8}},{"rid":1549,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":4,"y":9},"dir":0},"_x":4,"_y":9}},{"rid":1550,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":4,"y":10},"dir":0},"_x":4,"_y":10}},{"rid":1551,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":4,"y":11},"dir":0},"_x":4,"_y":11}},{"rid":1552,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"airlock_civilian","origin":{"x":4,"y":12},"dir":2},"_x":4,"_y":12}},{"rid":1553,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":4,"y":13},"dir":0},"_x":4,"_y":13}},{"rid":1554,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":4,"y":14},"dir":0},"_x":4,"_y":14}},{"rid":1555,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":4,"y":15},"dir":0},"_x":4,"_y":15}},{"rid":1556,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":5,"y":8},"dir":0},"_x":5,"_y":8}},{"rid":1557,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":5,"y":9},"dir":0},"_x":5,"_y":9}},{"rid":1558,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":5,"y":10},"dir":0},"_x":5,"_y":10}},{"rid":1559,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":5,"y":11},"dir":0},"_x":5,"_y":11}},{"rid":1560,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":5,"y":12},"dir":0},"_x":5,"_y":12}},{"rid":1561,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":5,"y":13},"dir":0},"_x":5,"_y":13}},{"rid":1562,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":5,"y":14},"dir":2},"_x":5,"_y":14}},{"rid":1563,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":5,"y":15},"dir":2},"_x":5,"_y":15}},{"rid":1564,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":6,"y":8},"dir":0},"_x":6,"_y":8}},{"rid":1565,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":6,"y":9},"dir":2},"_x":6,"_y":9}},{"rid":1566,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":6,"y":10},"dir":0},"_x":6,"_y":10}},{"rid":1567,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":6,"y":11},"dir":0},"_x":6,"_y":11}},{"rid":1568,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":6,"y":12},"dir":0},"_x":6,"_y":12}},{"rid":1569,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":6,"y":13},"dir":0},"_x":6,"_y":13}},{"rid":1570,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":6,"y":14},"dir":2},"_x":6,"_y":14}},{"rid":1571,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":6,"y":15},"dir":2},"_x":6,"_y":15}},{"rid":1572,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":7,"y":8},"dir":0},"_x":7,"_y":8}},{"rid":1573,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":7,"y":9},"dir":2},"_x":7,"_y":9}},{"rid":1574,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":7,"y":10},"dir":0},"_x":7,"_y":10}},{"rid":1575,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":7,"y":11},"dir":0},"_x":7,"_y":11}},{"rid":1576,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":7,"y":12},"dir":0},"_x":7,"_y":12}},{"rid":1577,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":7,"y":13},"dir":0},"_x":7,"_y":13}},{"rid":1578,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":7,"y":14},"dir":2},"_x":7,"_y":14}},{"rid":1579,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":7,"y":15},"dir":2},"_x":7,"_y":15}},{"rid":1580,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":8,"y":8},"dir":0},"_x":8,"_y":8}},{"rid":1581,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":8,"y":9},"dir":0},"_x":8,"_y":9}},{"rid":1582,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":8,"y":10},"dir":0},"_x":8,"_y":10}},{"rid":1583,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":8,"y":11},"dir":0},"_x":8,"_y":11}},{"rid":1584,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"airlock_civilian","origin":{"x":8,"y":12},"dir":2},"_x":8,"_y":12}},{"rid":1585,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":8,"y":13},"dir":0},"_x":8,"_y":13}},{"rid":1586,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":8,"y":14},"dir":0},"_x":8,"_y":14}},{"rid":1587,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":8,"y":15},"dir":0},"_x":8,"_y":15}},{"rid":1588,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":9,"y":8},"dir":0},"_x":9,"_y":8}},{"rid":1589,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":9,"y":9},"dir":0},"_x":9,"_y":9}},{"rid":1590,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":9,"y":10},"dir":0},"_x":9,"_y":10}},{"rid":1591,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":9,"y":11},"dir":0},"_x":9,"_y":11}},{"rid":1592,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":9,"y":12},"dir":0},"_x":9,"_y":12}},{"rid":1593,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":9,"y":13},"dir":0},"_x":9,"_y":13}},{"rid":1594,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":9,"y":14},"dir":0},"_x":9,"_y":14}},{"rid":1595,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":9,"y":15},"dir":2},"_x":9,"_y":15}},{"rid":1596,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":10,"y":8},"dir":0},"_x":10,"_y":8}},{"rid":1597,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":10,"y":9},"dir":0},"_x":10,"_y":9}},{"rid":1598,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":10,"y":10},"dir":0},"_x":10,"_y":10}},{"rid":1599,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":10,"y":11},"dir":0},"_x":10,"_y":11}},{"rid":1600,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":10,"y":12},"dir":0},"_x":10,"_y":12}},{"rid":1601,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":10,"y":13},"dir":0},"_x":10,"_y":13}},{"rid":1602,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":10,"y":14},"dir":0},"_x":10,"_y":14}},{"rid":1603,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":10,"y":15},"dir":0},"_x":10,"_y":15}},{"rid":1604,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":11,"y":8},"dir":0},"_x":11,"_y":8}},{"rid":1605,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":11,"y":9},"dir":0},"_x":11,"_y":9}},{"rid":1606,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":11,"y":10},"dir":0},"_x":11,"_y":10}},{"rid":1607,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":11,"y":11},"dir":0},"_x":11,"_y":11}},{"rid":1608,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":11,"y":12},"dir":0},"_x":11,"_y":12}},{"rid":1609,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":11,"y":13},"dir":0},"_x":11,"_y":13}},{"rid":1610,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":11,"y":14},"dir":0},"_x":11,"_y":14}},{"rid":1611,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":11,"y":15},"dir":0},"_x":11,"_y":15}},{"rid":1612,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":12,"y":8},"dir":0},"_x":12,"_y":8}},{"rid":1613,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":12,"y":9},"dir":0},"_x":12,"_y":9}},{"rid":1614,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":12,"y":10},"dir":0},"_x":12,"_y":10}},{"rid":1615,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":12,"y":11},"dir":0},"_x":12,"_y":11}},{"rid":1616,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":12,"y":12},"dir":0},"_x":12,"_y":12}},{"rid":1617,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":12,"y":13},"dir":0},"_x":12,"_y":13}},{"rid":1618,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":12,"y":14},"dir":0},"_x":12,"_y":14}},{"rid":1619,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":12,"y":15},"dir":0},"_x":12,"_y":15}},{"rid":1620,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":13,"y":8},"dir":0},"_x":13,"_y":8}},{"rid":1621,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":13,"y":9},"dir":0},"_x":13,"_y":9}},{"rid":1622,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":13,"y":10},"dir":0},"_x":13,"_y":10}},{"rid":1623,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":13,"y":11},"dir":0},"_x":13,"_y":11}},{"rid":1624,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":13,"y":12},"dir":0},"_x":13,"_y":12}},{"rid":1625,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":13,"y":13},"dir":0},"_x":13,"_y":13}},{"rid":1626,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":13,"y":14},"dir":0},"_x":13,"_y":14}},{"rid":1627,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"airlock_civilian","origin":{"x":13,"y":15},"dir":0},"_x":13,"_y":15}},{"rid":1628,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":14,"y":8},"dir":0},"_x":14,"_y":8}},{"rid":1629,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":14,"y":9},"dir":0},"_x":14,"_y":9}},{"rid":1630,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":14,"y":10},"dir":0},"_x":14,"_y":10}},{"rid":1631,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":14,"y":11},"dir":0},"_x":14,"_y":11}},{"rid":1632,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":14,"y":12},"dir":0},"_x":14,"_y":12}},{"rid":1633,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":14,"y":13},"dir":0},"_x":14,"_y":13}},{"rid":1634,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":14,"y":14},"dir":0},"_x":14,"_y":14}},{"rid":1635,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":14,"y":15},"dir":0},"_x":14,"_y":15}},{"rid":1636,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":15,"y":8},"dir":0},"_x":15,"_y":8}},{"rid":1637,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":15,"y":9},"dir":0},"_x":15,"_y":9}},{"rid":1638,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":15,"y":10},"dir":0},"_x":15,"_y":10}},{"rid":1639,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":15,"y":11},"dir":0},"_x":15,"_y":11}},{"rid":1640,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":15,"y":12},"dir":0},"_x":15,"_y":12}},{"rid":1641,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":15,"y":13},"dir":0},"_x":15,"_y":13}},{"rid":1642,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_kitchen","origin":{"x":15,"y":14},"dir":0},"_x":15,"_y":14}},{"rid":1643,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":15,"y":15},"dir":0},"_x":15,"_y":15}},{"rid":1644,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_tube_fixture","origin":{"x":0,"y":8},"dir":0}],"x":0,"y":8}},{"rid":1645,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_tube_fixture","origin":{"x":0,"y":15},"dir":4}],"x":0,"y":15}},{"rid":1646,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_tube_fixture","origin":{"x":1,"y":15},"dir":0}],"x":1,"y":15}},{"rid":1647,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_tube_fixture","origin":{"x":4,"y":14},"dir":2}],"x":4,"y":14}},{"rid":1648,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_tube_fixture","origin":{"x":8,"y":9},"dir":6}],"x":8,"y":9}},{"rid":1649,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_tube_fixture","origin":{"x":11,"y":15},"dir":0}],"x":11,"y":15}},{"rid":1650,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_tube_fixture","origin":{"x":12,"y":8},"dir":0}],"x":12,"y":8}},{"rid":1651,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_tube_fixture","origin":{"x":12,"y":15},"dir":4}],"x":12,"y":15}},{"rid":1652,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"apc","origin":{"x":1,"y":8},"dir":0}],"x":1,"y":8}},{"rid":1653,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"airalarm","origin":{"x":1,"y":15},"dir":4}],"x":1,"y":15}},{"rid":1654,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"airalarm","origin":{"x":3,"y":15},"dir":0},{"tileObjectSOName":"poster_horizontal","origin":{"x":3,"y":15},"dir":4}],"x":3,"y":15}},{"rid":1655,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_switch","origin":{"x":4,"y":10},"dir":6}],"x":4,"y":10}},{"rid":1656,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"firealarm","origin":{"x":9,"y":15},"dir":0}],"x":9,"y":15}},{"rid":1657,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"airalarm","origin":{"x":11,"y":8},"dir":0}],"x":11,"y":8}},{"rid":1658,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_switch","origin":{"x":11,"y":15},"dir":4}],"x":11,"y":15}},{"rid":1659,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"apc","origin":{"x":14,"y":8},"dir":0}],"x":14,"y":8}},{"rid":1660,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"locker","origin":{"x":0,"y":9},"dir":0},"_x":0,"_y":9}},{"rid":1661,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"disposal_bin","origin":{"x":0,"y":14},"dir":4},"_x":0,"_y":14}},{"rid":1662,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"scrubber","origin":{"x":1,"y":13},"dir":0},"_x":1,"_y":13}},{"rid":1663,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_wood","origin":{"x":1,"y":14},"dir":0},"_x":1,"_y":14}},{"rid":1664,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plant7","origin":{"x":2,"y":9},"dir":6},"_x":2,"_y":9}},{"rid":1665,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_wood","origin":{"x":2,"y":14},"dir":0},"_x":2,"_y":14}},{"rid":1666,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"vendor_youtool","origin":{"x":3,"y":9},"dir":0},"_x":3,"_y":9}},{"rid":1667,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_wood","origin":{"x":3,"y":14},"dir":0},"_x":3,"_y":14}},{"rid":1668,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DinnerBooth","origin":{"x":9,"y":9},"dir":1},"_x":9,"_y":9}},{"rid":1669,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DinnerBooth","origin":{"x":9,"y":10},"dir":2},"_x":9,"_y":10}},{"rid":1670,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DinnerBooth","origin":{"x":9,"y":11},"dir":3},"_x":9,"_y":11}},{"rid":1671,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DinnerBooth","origin":{"x":9,"y":13},"dir":2},"_x":9,"_y":13}},{"rid":1672,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DinnerBooth","origin":{"x":9,"y":14},"dir":3},"_x":9,"_y":14}},{"rid":1673,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DinnerBooth","origin":{"x":10,"y":9},"dir":0},"_x":10,"_y":9}},{"rid":1674,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DinnerBooth","origin":{"x":10,"y":11},"dir":4},"_x":10,"_y":11}},{"rid":1675,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DinnerBooth","origin":{"x":10,"y":14},"dir":4},"_x":10,"_y":14}},{"rid":1676,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"vent","origin":{"x":11,"y":12},"dir":0},"_x":11,"_y":12}},{"rid":1677,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_glass","origin":{"x":12,"y":9},"dir":0},"_x":12,"_y":9}},{"rid":1678,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_glass","origin":{"x":12,"y":10},"dir":0},"_x":12,"_y":10}},{"rid":1679,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_glass","origin":{"x":12,"y":11},"dir":0},"_x":12,"_y":11}},{"rid":1680,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_glass","origin":{"x":12,"y":12},"dir":0},"_x":12,"_y":12}},{"rid":1681,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_glass","origin":{"x":12,"y":13},"dir":0},"_x":12,"_y":13}},{"rid":1682,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"disposal_bin","origin":{"x":13,"y":9},"dir":0},"_x":13,"_y":9}},{"rid":1683,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"scrubber","origin":{"x":13,"y":10},"dir":0},"_x":13,"_y":10}},{"rid":1684,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"microwave","origin":{"x":15,"y":9},"dir":6},"_x":15,"_y":9}},{"rid":1685,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_steel","origin":{"x":15,"y":10},"dir":4},"_x":15,"_y":10}},{"rid":1686,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_steel","origin":{"x":15,"y":11},"dir":4},"_x":15,"_y":11}},{"rid":1687,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"vendor_robustsoftdrinks","origin":{"x":15,"y":12},"dir":6},"_x":15,"_y":12}},{"rid":1688,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_steel","origin":{"x":15,"y":13},"dir":4},"_x":15,"_y":13}},{"rid":1689,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_steel","origin":{"x":15,"y":14},"dir":4},"_x":15,"_y":14}},{"rid":1690,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":15},"dir":0},"_x":9,"_y":15}},{"rid":1691,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":15},"dir":0},"_x":10,"_y":15}},{"rid":1692,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":15},"dir":0},"_x":11,"_y":15}},{"rid":1693,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":8},"dir":0},"_x":12,"_y":8}},{"rid":1694,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":9},"dir":0},"_x":12,"_y":9}},{"rid":1695,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":10},"dir":0},"_x":12,"_y":10}},{"rid":1696,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":11},"dir":0},"_x":12,"_y":11}},{"rid":1697,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":12},"dir":0},"_x":12,"_y":12}},{"rid":1698,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":13},"dir":0},"_x":12,"_y":13}},{"rid":1699,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":14},"dir":0},"_x":12,"_y":14}},{"rid":1700,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":15},"dir":0},"_x":12,"_y":15}},{"rid":1701,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":8},"dir":0},"_x":13,"_y":8}},{"rid":1702,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":9},"dir":0},"_x":13,"_y":9}},{"rid":1703,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":10},"dir":0},"_x":13,"_y":10}},{"rid":1704,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":11},"dir":0},"_x":13,"_y":11}},{"rid":1705,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":12},"dir":0},"_x":13,"_y":12}},{"rid":1706,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":13},"dir":0},"_x":13,"_y":13}},{"rid":1707,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":14},"dir":0},"_x":13,"_y":14}},{"rid":1708,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":15},"dir":0},"_x":13,"_y":15}},{"rid":1709,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":8},"dir":0},"_x":14,"_y":8}},{"rid":1710,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":9},"dir":0},"_x":14,"_y":9}},{"rid":1711,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":10},"dir":0},"_x":14,"_y":10}},{"rid":1712,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":11},"dir":0},"_x":14,"_y":11}},{"rid":1713,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":12},"dir":0},"_x":14,"_y":12}},{"rid":1714,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":13},"dir":0},"_x":14,"_y":13}},{"rid":1715,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":14},"dir":0},"_x":14,"_y":14}},{"rid":1716,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":15},"dir":0},"_x":14,"_y":15}},{"rid":1717,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":8},"dir":0},"_x":15,"_y":8}},{"rid":1718,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":9},"dir":0},"_x":15,"_y":9}},{"rid":1719,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":10},"dir":0},"_x":15,"_y":10}},{"rid":1720,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":11},"dir":0},"_x":15,"_y":11}},{"rid":1721,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":12},"dir":0},"_x":15,"_y":12}},{"rid":1722,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":13},"dir":0},"_x":15,"_y":13}},{"rid":1723,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":14},"dir":0},"_x":15,"_y":14}},{"rid":1724,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":15},"dir":0},"_x":15,"_y":15}},{"rid":1725,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":12,"y":8},"dir":0},"_x":12,"_y":8}},{"rid":1726,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":12,"y":9},"dir":0},"_x":12,"_y":9}},{"rid":1727,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":12,"y":10},"dir":0},"_x":12,"_y":10}},{"rid":1728,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":12,"y":11},"dir":0},"_x":12,"_y":11}},{"rid":1729,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":12,"y":12},"dir":0},"_x":12,"_y":12}},{"rid":1730,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":12,"y":13},"dir":0},"_x":12,"_y":13}},{"rid":1731,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":12,"y":14},"dir":0},"_x":12,"_y":14}},{"rid":1732,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":12,"y":15},"dir":0},"_x":12,"_y":15}},{"rid":1733,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":13,"y":8},"dir":0},"_x":13,"_y":8}},{"rid":1734,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":13,"y":9},"dir":0},"_x":13,"_y":9}},{"rid":1735,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":13,"y":10},"dir":0},"_x":13,"_y":10}},{"rid":1736,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":13,"y":11},"dir":0},"_x":13,"_y":11}},{"rid":1737,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":13,"y":12},"dir":0},"_x":13,"_y":12}},{"rid":1738,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":13,"y":13},"dir":0},"_x":13,"_y":13}},{"rid":1739,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":13,"y":14},"dir":0},"_x":13,"_y":14}},{"rid":1740,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":13,"y":15},"dir":0},"_x":13,"_y":15}},{"rid":1741,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":14,"y":8},"dir":0},"_x":14,"_y":8}},{"rid":1742,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":14,"y":9},"dir":0},"_x":14,"_y":9}},{"rid":1743,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":14,"y":10},"dir":0},"_x":14,"_y":10}},{"rid":1744,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":14,"y":11},"dir":0},"_x":14,"_y":11}},{"rid":1745,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":14,"y":12},"dir":0},"_x":14,"_y":12}},{"rid":1746,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":14,"y":13},"dir":0},"_x":14,"_y":13}},{"rid":1747,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":14,"y":14},"dir":0},"_x":14,"_y":14}},{"rid":1748,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":14,"y":15},"dir":0},"_x":14,"_y":15}},{"rid":1749,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":15,"y":8},"dir":0},"_x":15,"_y":8}},{"rid":1750,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":15,"y":9},"dir":0},"_x":15,"_y":9}},{"rid":1751,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":15,"y":10},"dir":0},"_x":15,"_y":10}},{"rid":1752,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":15,"y":11},"dir":0},"_x":15,"_y":11}},{"rid":1753,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":15,"y":12},"dir":0},"_x":15,"_y":12}},{"rid":1754,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":15,"y":13},"dir":0},"_x":15,"_y":13}},{"rid":1755,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_wood","origin":{"x":15,"y":14},"dir":0},"_x":15,"_y":14}},{"rid":1756,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"airlock_civilian","origin":{"x":15,"y":15},"dir":0},"_x":15,"_y":15}},{"rid":1757,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"mirror","origin":{"x":12,"y":10},"dir":2}],"x":12,"y":10}},{"rid":1758,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"mirror","origin":{"x":12,"y":11},"dir":2}],"x":12,"y":11}},{"rid":1759,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"mirror","origin":{"x":12,"y":12},"dir":2}],"x":12,"y":12}},{"rid":1760,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"firealarm","origin":{"x":13,"y":15},"dir":4}],"x":13,"y":15}},{"rid":1761,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"locker_security","origin":{"x":13,"y":9},"dir":0},"_x":13,"_y":9}},{"rid":1762,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"chair_plastic","origin":{"x":13,"y":13},"dir":0},"_x":13,"_y":13}},{"rid":1763,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"table_wood","origin":{"x":13,"y":14},"dir":4},"_x":13,"_y":14}},{"rid":1764,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"locker_secure","origin":{"x":14,"y":9},"dir":0},"_x":14,"_y":9}},{"rid":1765,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"chair_plastic","origin":{"x":14,"y":14},"dir":6},"_x":14,"_y":14}},{"rid":1766,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"locker","origin":{"x":15,"y":9},"dir":0},"_x":15,"_y":9}},{"rid":1767,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"vent","origin":{"x":15,"y":10},"dir":0},"_x":15,"_y":10}},{"rid":1768,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":0},"dir":0},"_x":9,"_y":0}},{"rid":1769,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":1},"dir":0},"_x":9,"_y":1}},{"rid":1770,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":2},"dir":0},"_x":9,"_y":2}},{"rid":1771,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":3},"dir":0},"_x":9,"_y":3}},{"rid":1772,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":4},"dir":4},"_x":9,"_y":4}},{"rid":1773,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":9,"y":5},"dir":4},"_x":9,"_y":5}},{"rid":1774,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":0},"dir":0},"_x":10,"_y":0}},{"rid":1775,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":1},"dir":0},"_x":10,"_y":1}},{"rid":1776,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":2},"dir":0},"_x":10,"_y":2}},{"rid":1777,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":3},"dir":0},"_x":10,"_y":3}},{"rid":1778,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":4},"dir":4},"_x":10,"_y":4}},{"rid":1779,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":10,"y":5},"dir":4},"_x":10,"_y":5}},{"rid":1780,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":0},"dir":0},"_x":11,"_y":0}},{"rid":1781,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":1},"dir":0},"_x":11,"_y":1}},{"rid":1782,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":2},"dir":0},"_x":11,"_y":2}},{"rid":1783,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":3},"dir":0},"_x":11,"_y":3}},{"rid":1784,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":4},"dir":4},"_x":11,"_y":4}},{"rid":1785,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":5},"dir":4},"_x":11,"_y":5}},{"rid":1786,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":6},"dir":4},"_x":11,"_y":6}},{"rid":1787,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":11,"y":7},"dir":4},"_x":11,"_y":7}},{"rid":1788,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":0},"dir":0},"_x":12,"_y":0}},{"rid":1789,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":1},"dir":0},"_x":12,"_y":1}},{"rid":1790,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":2},"dir":0},"_x":12,"_y":2}},{"rid":1791,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":3},"dir":0},"_x":12,"_y":3}},{"rid":1792,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":4},"dir":4},"_x":12,"_y":4}},{"rid":1793,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":5},"dir":4},"_x":12,"_y":5}},{"rid":1794,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":6},"dir":4},"_x":12,"_y":6}},{"rid":1795,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":12,"y":7},"dir":4},"_x":12,"_y":7}},{"rid":1796,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":0},"dir":0},"_x":13,"_y":0}},{"rid":1797,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":1},"dir":0},"_x":13,"_y":1}},{"rid":1798,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":2},"dir":0},"_x":13,"_y":2}},{"rid":1799,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":3},"dir":0},"_x":13,"_y":3}},{"rid":1800,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":4},"dir":4},"_x":13,"_y":4}},{"rid":1801,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":5},"dir":4},"_x":13,"_y":5}},{"rid":1802,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":6},"dir":4},"_x":13,"_y":6}},{"rid":1803,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":13,"y":7},"dir":4},"_x":13,"_y":7}},{"rid":1804,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":0},"dir":0},"_x":14,"_y":0}},{"rid":1805,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":1},"dir":0},"_x":14,"_y":1}},{"rid":1806,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":2},"dir":0},"_x":14,"_y":2}},{"rid":1807,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":3},"dir":0},"_x":14,"_y":3}},{"rid":1808,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":4},"dir":4},"_x":14,"_y":4}},{"rid":1809,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":5},"dir":4},"_x":14,"_y":5}},{"rid":1810,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":6},"dir":4},"_x":14,"_y":6}},{"rid":1811,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":7},"dir":4},"_x":14,"_y":7}},{"rid":1812,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":8},"dir":4},"_x":14,"_y":8}},{"rid":1813,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":14,"y":9},"dir":4},"_x":14,"_y":9}},{"rid":1814,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":0},"dir":0},"_x":15,"_y":0}},{"rid":1815,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":1},"dir":0},"_x":15,"_y":1}},{"rid":1816,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":2},"dir":0},"_x":15,"_y":2}},{"rid":1817,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":3},"dir":0},"_x":15,"_y":3}},{"rid":1818,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":4},"dir":4},"_x":15,"_y":4}},{"rid":1819,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":5},"dir":4},"_x":15,"_y":5}},{"rid":1820,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":6},"dir":4},"_x":15,"_y":6}},{"rid":1821,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":7},"dir":4},"_x":15,"_y":7}},{"rid":1822,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":8},"dir":4},"_x":15,"_y":8}},{"rid":1823,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":9},"dir":4},"_x":15,"_y":9}},{"rid":1824,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":15,"y":10},"dir":4},"_x":15,"_y":10}},{"rid":1825,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":12,"y":0},"dir":0},"_x":12,"_y":0}},{"rid":1826,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":12,"y":1},"dir":0},"_x":12,"_y":1}},{"rid":1827,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":12,"y":2},"dir":0},"_x":12,"_y":2}},{"rid":1828,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":12,"y":3},"dir":0},"_x":12,"_y":3}},{"rid":1829,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":13,"y":0},"dir":0},"_x":13,"_y":0}},{"rid":1830,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":13,"y":1},"dir":0},"_x":13,"_y":1}},{"rid":1831,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":13,"y":2},"dir":0},"_x":13,"_y":2}},{"rid":1832,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":13,"y":3},"dir":0},"_x":13,"_y":3}},{"rid":1833,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":14,"y":0},"dir":0},"_x":14,"_y":0}},{"rid":1834,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":14,"y":1},"dir":0},"_x":14,"_y":1}},{"rid":1835,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":14,"y":2},"dir":0},"_x":14,"_y":2}},{"rid":1836,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":14,"y":3},"dir":0},"_x":14,"_y":3}},{"rid":1837,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":15,"y":0},"dir":0},"_x":15,"_y":0}},{"rid":1838,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":15,"y":1},"dir":0},"_x":15,"_y":1}},{"rid":1839,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":15,"y":2},"dir":0},"_x":15,"_y":2}},{"rid":1840,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":15,"y":3},"dir":0},"_x":15,"_y":3}},{"rid":1841,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"light_tube_fixture","origin":{"x":13,"y":3},"dir":4}],"x":13,"y":3}},{"rid":1842,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":0},"dir":0},"_x":0,"_y":0}},{"rid":1843,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":1},"dir":0},"_x":0,"_y":1}},{"rid":1844,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":2},"dir":0},"_x":0,"_y":2}},{"rid":1845,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":3},"dir":0},"_x":0,"_y":3}},{"rid":1846,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":4},"dir":6},"_x":0,"_y":4}},{"rid":1847,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":5},"dir":6},"_x":0,"_y":5}},{"rid":1848,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":0},"dir":6},"_x":1,"_y":0}},{"rid":1849,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":1},"dir":6},"_x":1,"_y":1}},{"rid":1850,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":2},"dir":6},"_x":1,"_y":2}},{"rid":1851,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":3},"dir":6},"_x":1,"_y":3}},{"rid":1852,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":4},"dir":6},"_x":1,"_y":4}},{"rid":1853,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":1,"y":5},"dir":6},"_x":1,"_y":5}},{"rid":1854,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":0,"y":0},"dir":0},"_x":0,"_y":0}},{"rid":1855,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":0,"y":1},"dir":0},"_x":0,"_y":1}},{"rid":1856,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"tile_grey","origin":{"x":0,"y":2},"dir":0},"_x":0,"_y":2}},{"rid":1857,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":0,"y":3},"dir":0},"_x":0,"_y":3}},{"rid":1858,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":8},"dir":0},"_x":0,"_y":8}},{"rid":1859,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":9},"dir":0},"_x":0,"_y":9}},{"rid":1860,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":10},"dir":0},"_x":0,"_y":10}},{"rid":1861,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":11},"dir":0},"_x":0,"_y":11}},{"rid":1862,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":12},"dir":0},"_x":0,"_y":12}},{"rid":1863,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":13},"dir":0},"_x":0,"_y":13}},{"rid":1864,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":14},"dir":0},"_x":0,"_y":14}},{"rid":1865,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"plenum","origin":{"x":0,"y":15},"dir":0},"_x":0,"_y":15}},{"rid":1866,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":0,"y":8},"dir":0},"_x":0,"_y":8}},{"rid":1867,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":0,"y":9},"dir":0},"_x":0,"_y":9}},{"rid":1868,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":0,"y":10},"dir":0},"_x":0,"_y":10}},{"rid":1869,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":0,"y":11},"dir":0},"_x":0,"_y":11}},{"rid":1870,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":0,"y":12},"dir":0},"_x":0,"_y":12}},{"rid":1871,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":0,"y":13},"dir":0},"_x":0,"_y":13}},{"rid":1872,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":0,"y":14},"dir":0},"_x":0,"_y":14}},{"rid":1873,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"wall_steel","origin":{"x":0,"y":15},"dir":0},"_x":0,"_y":15}}]}} \ No newline at end of file +{"mapName":"UnnamedMap","savedChunkList":[{"chunkKey":{"x":0,"y":0},"originPosition":{"x":0.0,"y":0.0,"z":0.0},"savedTiles":[{"rid":1000},{"rid":1001},{"rid":1002},{"rid":1003},{"rid":1004},{"rid":1005},{"rid":1006},{"rid":1007},{"rid":1008},{"rid":1009},{"rid":1010},{"rid":1011},{"rid":1012},{"rid":1013},{"rid":1014},{"rid":1015},{"rid":1016},{"rid":1017},{"rid":1018},{"rid":1019},{"rid":1020},{"rid":1021},{"rid":1022},{"rid":1023},{"rid":1024},{"rid":1025},{"rid":1026},{"rid":1027},{"rid":1028},{"rid":1029},{"rid":1030},{"rid":1031},{"rid":1032},{"rid":1033},{"rid":1034},{"rid":1035},{"rid":1036},{"rid":1037},{"rid":1038},{"rid":1039},{"rid":1040},{"rid":1041},{"rid":1042},{"rid":1043},{"rid":1044},{"rid":1045},{"rid":1046},{"rid":1047},{"rid":1048},{"rid":1049},{"rid":1050},{"rid":1051},{"rid":1052},{"rid":1053},{"rid":1054},{"rid":1055},{"rid":1056},{"rid":1057},{"rid":1058},{"rid":1059},{"rid":1060},{"rid":1061},{"rid":1062},{"rid":1063},{"rid":1064},{"rid":1065},{"rid":1066},{"rid":1067},{"rid":1068},{"rid":1069},{"rid":1070},{"rid":1071},{"rid":1072},{"rid":1073},{"rid":1074},{"rid":1075},{"rid":1076},{"rid":1077},{"rid":1078},{"rid":1079},{"rid":1080},{"rid":1081},{"rid":1082},{"rid":1083},{"rid":1084},{"rid":1085},{"rid":1086},{"rid":1087},{"rid":1088},{"rid":1089},{"rid":1090},{"rid":1091},{"rid":1092},{"rid":1093},{"rid":1094},{"rid":1095},{"rid":1096},{"rid":1097},{"rid":1098},{"rid":1099},{"rid":1100},{"rid":1101},{"rid":1102},{"rid":1103},{"rid":1104},{"rid":1105},{"rid":1106},{"rid":1107},{"rid":1108},{"rid":1109},{"rid":1110},{"rid":1111},{"rid":1112},{"rid":1113},{"rid":1114},{"rid":1115},{"rid":1116},{"rid":1117},{"rid":1118},{"rid":1119},{"rid":1120},{"rid":1121},{"rid":1122},{"rid":1123},{"rid":1124},{"rid":1125},{"rid":1126},{"rid":1127},{"rid":1128},{"rid":1129},{"rid":1130},{"rid":1131},{"rid":1132},{"rid":1133},{"rid":1134},{"rid":1135},{"rid":1136},{"rid":1137},{"rid":1138},{"rid":1139},{"rid":1140},{"rid":1141},{"rid":1142},{"rid":1143},{"rid":1144},{"rid":1145},{"rid":1146},{"rid":1147},{"rid":1148},{"rid":1149},{"rid":1150},{"rid":1151},{"rid":1152},{"rid":1153},{"rid":1154},{"rid":1155},{"rid":1156},{"rid":1157},{"rid":1158},{"rid":1159},{"rid":1160},{"rid":1161},{"rid":1162},{"rid":1163},{"rid":1164},{"rid":1165},{"rid":1166},{"rid":1167},{"rid":1168},{"rid":1169},{"rid":1170},{"rid":1171},{"rid":1172},{"rid":1173},{"rid":1174},{"rid":1175},{"rid":1176},{"rid":1177},{"rid":1178},{"rid":1179},{"rid":1180},{"rid":1181},{"rid":1182},{"rid":1183},{"rid":1184},{"rid":1185},{"rid":1186},{"rid":1187},{"rid":1188},{"rid":1189},{"rid":1190},{"rid":1191},{"rid":1192},{"rid":1193},{"rid":1194},{"rid":1195},{"rid":1196},{"rid":1197},{"rid":1198},{"rid":1199},{"rid":1200},{"rid":1201},{"rid":1202},{"rid":1203},{"rid":1204},{"rid":1205},{"rid":1206},{"rid":1207},{"rid":1208},{"rid":1209},{"rid":1210},{"rid":1211},{"rid":1212},{"rid":1213},{"rid":1214},{"rid":1215},{"rid":1216},{"rid":1217},{"rid":1218},{"rid":1219},{"rid":1220},{"rid":1221},{"rid":1222},{"rid":1223},{"rid":1224},{"rid":1225},{"rid":1226},{"rid":1227},{"rid":1228},{"rid":1229},{"rid":1230},{"rid":1231},{"rid":1232},{"rid":1233},{"rid":1234},{"rid":1235},{"rid":1236},{"rid":1237},{"rid":1238},{"rid":1239},{"rid":1240},{"rid":1241},{"rid":1242},{"rid":1243},{"rid":1244},{"rid":1245},{"rid":1246},{"rid":1247},{"rid":1248},{"rid":1249},{"rid":1250},{"rid":1251},{"rid":1252},{"rid":1253},{"rid":1254},{"rid":1255},{"rid":1256},{"rid":1257},{"rid":1258},{"rid":1259},{"rid":1260},{"rid":1261},{"rid":1262},{"rid":1263},{"rid":1264},{"rid":1265},{"rid":1266},{"rid":1267},{"rid":1268},{"rid":1269},{"rid":1270},{"rid":1271},{"rid":1272},{"rid":1273},{"rid":1274},{"rid":1275},{"rid":1276},{"rid":1277},{"rid":1278},{"rid":1279},{"rid":1280},{"rid":1281},{"rid":1282},{"rid":1283},{"rid":1284},{"rid":1285},{"rid":1286},{"rid":1287},{"rid":1288},{"rid":1289},{"rid":1290},{"rid":1291},{"rid":1292},{"rid":1293},{"rid":1294},{"rid":1295},{"rid":1296},{"rid":1297},{"rid":1298},{"rid":1299},{"rid":1300},{"rid":1301},{"rid":1302},{"rid":1303},{"rid":1304},{"rid":1305},{"rid":1306},{"rid":1307},{"rid":1308},{"rid":1309},{"rid":1310},{"rid":1311},{"rid":1312},{"rid":1313},{"rid":1314},{"rid":1315},{"rid":1316},{"rid":1317},{"rid":1318},{"rid":1319},{"rid":1320},{"rid":1321},{"rid":1322},{"rid":1323},{"rid":1324},{"rid":1325},{"rid":1326},{"rid":1327},{"rid":1328},{"rid":1329},{"rid":1330},{"rid":1331},{"rid":1332},{"rid":1333},{"rid":1334},{"rid":1335},{"rid":1336},{"rid":1337},{"rid":1338},{"rid":1339},{"rid":1340},{"rid":1341},{"rid":1342},{"rid":1343},{"rid":1344},{"rid":1345},{"rid":1346},{"rid":1347},{"rid":1348},{"rid":1349},{"rid":1350},{"rid":1351},{"rid":1352},{"rid":1353},{"rid":1354},{"rid":1355},{"rid":1356},{"rid":1357},{"rid":1358},{"rid":1359},{"rid":1360},{"rid":1361},{"rid":1362},{"rid":1363},{"rid":1364},{"rid":1365},{"rid":1366},{"rid":1367},{"rid":1368},{"rid":1369},{"rid":1370},{"rid":1371},{"rid":1372},{"rid":1373},{"rid":1374},{"rid":1375},{"rid":1376},{"rid":1377}]},{"chunkKey":{"x":0,"y":-1},"originPosition":{"x":0.0,"y":0.0,"z":-16.0},"savedTiles":[{"rid":1378},{"rid":1379},{"rid":1380},{"rid":1381},{"rid":1382},{"rid":1383},{"rid":1384},{"rid":1385},{"rid":1386},{"rid":1387},{"rid":1388},{"rid":1389},{"rid":1390},{"rid":1391},{"rid":1392},{"rid":1393},{"rid":1394},{"rid":1395},{"rid":1396},{"rid":1397},{"rid":1398},{"rid":1399},{"rid":1400},{"rid":1401},{"rid":1402},{"rid":1403},{"rid":1404},{"rid":1405},{"rid":1406},{"rid":1407},{"rid":1408},{"rid":1409},{"rid":1410},{"rid":1411},{"rid":1412},{"rid":1413},{"rid":1414},{"rid":1415},{"rid":1416},{"rid":1417},{"rid":1418},{"rid":1419},{"rid":1420},{"rid":1421},{"rid":1422},{"rid":1423},{"rid":1424},{"rid":1425},{"rid":1426},{"rid":1427},{"rid":1428},{"rid":1429},{"rid":1430},{"rid":1431},{"rid":1432},{"rid":1433},{"rid":1434},{"rid":1435},{"rid":1436},{"rid":1437},{"rid":1438},{"rid":1439},{"rid":1440},{"rid":1441},{"rid":1442},{"rid":1443},{"rid":1444},{"rid":1445},{"rid":1446},{"rid":1447},{"rid":1448},{"rid":1449},{"rid":1450},{"rid":1451},{"rid":1452},{"rid":1453},{"rid":1454},{"rid":1455},{"rid":1456},{"rid":1457},{"rid":1458},{"rid":1459},{"rid":1460},{"rid":1461},{"rid":1462},{"rid":1463},{"rid":1464},{"rid":1465},{"rid":1466},{"rid":1467},{"rid":1468},{"rid":1469},{"rid":1470},{"rid":1471},{"rid":1472},{"rid":1473},{"rid":1474},{"rid":1475},{"rid":1476},{"rid":1477},{"rid":1478},{"rid":1479},{"rid":1480},{"rid":1481},{"rid":1482},{"rid":1483},{"rid":1484},{"rid":1485},{"rid":1486},{"rid":1487},{"rid":1488},{"rid":1489},{"rid":1490},{"rid":1491},{"rid":1492},{"rid":1493},{"rid":1494},{"rid":1495},{"rid":1496},{"rid":1497},{"rid":1498},{"rid":1499},{"rid":1500},{"rid":1501},{"rid":1502},{"rid":1503},{"rid":1504},{"rid":1505},{"rid":1506},{"rid":1507},{"rid":1508},{"rid":1509},{"rid":1510},{"rid":1511},{"rid":1512},{"rid":1513},{"rid":1514},{"rid":1515},{"rid":1516},{"rid":1517},{"rid":1518},{"rid":1519},{"rid":1520},{"rid":1521},{"rid":1522},{"rid":1523},{"rid":1524},{"rid":1525},{"rid":1526},{"rid":1527},{"rid":1528},{"rid":1529},{"rid":1530},{"rid":1531},{"rid":1532},{"rid":1533},{"rid":1534},{"rid":1535},{"rid":1536},{"rid":1537},{"rid":1538},{"rid":1539},{"rid":1540},{"rid":1541},{"rid":1542},{"rid":1543},{"rid":1544},{"rid":1545},{"rid":1546},{"rid":1547},{"rid":1548},{"rid":1549},{"rid":1550},{"rid":1551},{"rid":1552},{"rid":1553},{"rid":1554},{"rid":1555},{"rid":1556},{"rid":1557},{"rid":1558},{"rid":1559},{"rid":1560},{"rid":1561},{"rid":1562},{"rid":1563},{"rid":1564},{"rid":1565},{"rid":1566},{"rid":1567},{"rid":1568},{"rid":1569},{"rid":1570},{"rid":1571},{"rid":1572},{"rid":1573},{"rid":1574},{"rid":1575},{"rid":1576},{"rid":1577},{"rid":1578},{"rid":1579},{"rid":1580},{"rid":1581},{"rid":1582},{"rid":1583},{"rid":1584},{"rid":1585},{"rid":1586},{"rid":1587},{"rid":1588},{"rid":1589},{"rid":1590},{"rid":1591},{"rid":1592},{"rid":1593},{"rid":1594},{"rid":1595},{"rid":1596},{"rid":1597},{"rid":1598},{"rid":1599},{"rid":1600},{"rid":1601},{"rid":1602},{"rid":1603},{"rid":1604},{"rid":1605},{"rid":1606},{"rid":1607},{"rid":1608},{"rid":1609},{"rid":1610},{"rid":1611},{"rid":1612},{"rid":1613},{"rid":1614},{"rid":1615},{"rid":1616},{"rid":1617},{"rid":1618},{"rid":1619},{"rid":1620},{"rid":1621},{"rid":1622},{"rid":1623},{"rid":1624},{"rid":1625},{"rid":1626},{"rid":1627},{"rid":1628},{"rid":1629},{"rid":1630},{"rid":1631},{"rid":1632},{"rid":1633},{"rid":1634},{"rid":1635},{"rid":1636},{"rid":1637},{"rid":1638},{"rid":1639},{"rid":1640},{"rid":1641},{"rid":1642},{"rid":1643},{"rid":1644},{"rid":1645},{"rid":1646},{"rid":1647},{"rid":1648},{"rid":1649},{"rid":1650},{"rid":1651},{"rid":1652},{"rid":1653},{"rid":1654},{"rid":1655},{"rid":1656},{"rid":1657},{"rid":1658},{"rid":1659},{"rid":1660},{"rid":1661},{"rid":1662},{"rid":1663},{"rid":1664},{"rid":1665},{"rid":1666},{"rid":1667},{"rid":1668},{"rid":1669},{"rid":1670},{"rid":1671},{"rid":1672},{"rid":1673},{"rid":1674},{"rid":1675},{"rid":1676},{"rid":1677},{"rid":1678},{"rid":1679},{"rid":1680},{"rid":1681},{"rid":1682},{"rid":1683},{"rid":1684},{"rid":1685},{"rid":1686},{"rid":1687},{"rid":1688},{"rid":1689},{"rid":1690}]},{"chunkKey":{"x":-1,"y":-1},"originPosition":{"x":-16.0,"y":0.0,"z":-16.0},"savedTiles":[{"rid":1691},{"rid":1692},{"rid":1693},{"rid":1694},{"rid":1695},{"rid":1696},{"rid":1697},{"rid":1698},{"rid":1699},{"rid":1700},{"rid":1701},{"rid":1702},{"rid":1703},{"rid":1704},{"rid":1705},{"rid":1706},{"rid":1707},{"rid":1708},{"rid":1709},{"rid":1710},{"rid":1711},{"rid":1712},{"rid":1713},{"rid":1714},{"rid":1715},{"rid":1716},{"rid":1717},{"rid":1718},{"rid":1719},{"rid":1720},{"rid":1721},{"rid":1722},{"rid":1723},{"rid":1724},{"rid":1725},{"rid":1726},{"rid":1727},{"rid":1728},{"rid":1729},{"rid":1730},{"rid":1731},{"rid":1732},{"rid":1733},{"rid":1734},{"rid":1735},{"rid":1736},{"rid":1737},{"rid":1738},{"rid":1739},{"rid":1740},{"rid":1741},{"rid":1742},{"rid":1743},{"rid":1744},{"rid":1745},{"rid":1746},{"rid":1747},{"rid":1748},{"rid":1749},{"rid":1750},{"rid":1751},{"rid":1752},{"rid":1753},{"rid":1754},{"rid":1755},{"rid":1756},{"rid":1757},{"rid":1758},{"rid":1759},{"rid":1760},{"rid":1761},{"rid":1762},{"rid":1763},{"rid":1764},{"rid":1765},{"rid":1766},{"rid":1767},{"rid":1768}]},{"chunkKey":{"x":-1,"y":0},"originPosition":{"x":-16.0,"y":0.0,"z":0.0},"savedTiles":[{"rid":1769},{"rid":1770},{"rid":1771},{"rid":1772},{"rid":1773},{"rid":1774},{"rid":1775},{"rid":1776},{"rid":1777},{"rid":1778},{"rid":1779},{"rid":1780},{"rid":1781},{"rid":1782},{"rid":1783},{"rid":1784},{"rid":1785},{"rid":1786},{"rid":1787},{"rid":1788},{"rid":1789},{"rid":1790},{"rid":1791},{"rid":1792},{"rid":1793},{"rid":1794},{"rid":1795},{"rid":1796},{"rid":1797},{"rid":1798},{"rid":1799},{"rid":1800},{"rid":1801},{"rid":1802},{"rid":1803},{"rid":1804},{"rid":1805},{"rid":1806},{"rid":1807},{"rid":1808},{"rid":1809},{"rid":1810},{"rid":1811},{"rid":1812},{"rid":1813},{"rid":1814},{"rid":1815},{"rid":1816},{"rid":1817},{"rid":1818},{"rid":1819},{"rid":1820},{"rid":1821},{"rid":1822},{"rid":1823},{"rid":1824},{"rid":1825},{"rid":1826},{"rid":1827},{"rid":1828},{"rid":1829},{"rid":1830},{"rid":1831},{"rid":1832},{"rid":1833},{"rid":1834},{"rid":1835},{"rid":1836},{"rid":1837},{"rid":1838},{"rid":1839},{"rid":1840},{"rid":1841},{"rid":1842}]},{"chunkKey":{"x":1,"y":0},"originPosition":{"x":16.0,"y":0.0,"z":0.0},"savedTiles":[{"rid":1843},{"rid":1844},{"rid":1845},{"rid":1846},{"rid":1847},{"rid":1848},{"rid":1849},{"rid":1850},{"rid":1851},{"rid":1852},{"rid":1853},{"rid":1854},{"rid":1855},{"rid":1856},{"rid":1857},{"rid":1858}]},{"chunkKey":{"x":1,"y":-1},"originPosition":{"x":16.0,"y":0.0,"z":-16.0},"savedTiles":[{"rid":1859},{"rid":1860},{"rid":1861},{"rid":1862},{"rid":1863},{"rid":1864},{"rid":1865},{"rid":1866},{"rid":1867},{"rid":1868},{"rid":1869},{"rid":1870},{"rid":1871},{"rid":1872},{"rid":1873},{"rid":1874}]},{"chunkKey":{"x":-2,"y":0},"originPosition":{"x":-32.0,"y":0.0,"z":0.0},"savedTiles":[]},{"chunkKey":{"x":-2,"y":1},"originPosition":{"x":-32.0,"y":0.0,"z":16.0},"savedTiles":[]},{"chunkKey":{"x":0,"y":1},"originPosition":{"x":0.0,"y":0.0,"z":16.0},"savedTiles":[]},{"chunkKey":{"x":1,"y":1},"originPosition":{"x":16.0,"y":0.0,"z":16.0},"savedTiles":[]},{"chunkKey":{"x":2,"y":-2},"originPosition":{"x":32.0,"y":0.0,"z":-32.0},"savedTiles":[]},{"chunkKey":{"x":2,"y":-1},"originPosition":{"x":32.0,"y":0.0,"z":-16.0},"savedTiles":[]},{"chunkKey":{"x":1,"y":-3},"originPosition":{"x":16.0,"y":0.0,"z":-48.0},"savedTiles":[]},{"chunkKey":{"x":2,"y":0},"originPosition":{"x":32.0,"y":0.0,"z":0.0},"savedTiles":[]},{"chunkKey":{"x":0,"y":-2},"originPosition":{"x":0.0,"y":0.0,"z":-32.0},"savedTiles":[]}],"savedItemList":[{"itemName":"Sunglasses","worldPosition":{"x":-2.722350597381592,"y":0.0,"z":-5.493870735168457},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"TruckerCap","worldPosition":{"x":-3.0079312324523927,"y":0.0,"z":-5.865357875823975},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"PDA","worldPosition":{"x":0.7928969264030457,"y":0.0,"z":-6.824997901916504},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"IDCard","worldPosition":{"x":0.8076226115226746,"y":0.0,"z":-6.458649158477783},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"SecurityPDA","worldPosition":{"x":1.1651837825775147,"y":0.0,"z":-6.811561107635498},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"Poster","worldPosition":{"x":-3.048208475112915,"y":0.0,"z":-3.8842735290527345},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"KitchenKnife","worldPosition":{"x":14.001124382019043,"y":0.0,"z":-6.846427917480469},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"Mug","worldPosition":{"x":13.765487670898438,"y":0.0,"z":-7.185887336730957},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"Mug","worldPosition":{"x":13.693388938903809,"y":0.0,"z":-6.832640647888184},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"GasMask","worldPosition":{"x":-3.1002840995788576,"y":0.0,"z":-5.264541149139404},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"NuclearAuthenticationDisk","worldPosition":{"x":8.79245376586914,"y":0.0,"z":10.2618408203125},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"SecurityIDCard","worldPosition":{"x":1.2008566856384278,"y":0.0,"z":-6.482534408569336},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"BikeHorn","worldPosition":{"x":3.0536062717437746,"y":0.0,"z":-3.0902297496795656},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"SodaCanCannedLaughter","worldPosition":{"x":14.239484786987305,"y":4.76837158203125e-7,"z":-3.8687427043914797},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"SodaCanCannedAir","worldPosition":{"x":14.034838676452637,"y":4.76837158203125e-7,"z":-4.005363464355469},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"SodaCanCola","worldPosition":{"x":14.20504093170166,"y":-4.76837158203125e-7,"z":-3.5050411224365236},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"SodaCanCola","worldPosition":{"x":14.00119400024414,"y":0.0,"z":-3.67545485496521},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"ToolboxBlue","worldPosition":{"x":2.4964041709899904,"y":0.0,"z":-3.150343179702759},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}},{"itemName":"ToolboxBlue","worldPosition":{"x":2.003046989440918,"y":0.0,"z":-2.9925429821014406},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0}}],"references":{"version":2,"RefIds":[{"rid":1000,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":0},"dir":0},"_x":0,"_y":0}},{"rid":1001,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":1},"dir":0},"_x":0,"_y":1}},{"rid":1002,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":2},"dir":0},"_x":0,"_y":2}},{"rid":1003,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":3},"dir":0},"_x":0,"_y":3}},{"rid":1004,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":4},"dir":4},"_x":0,"_y":4}},{"rid":1005,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":5},"dir":4},"_x":0,"_y":5}},{"rid":1006,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":6},"dir":4},"_x":0,"_y":6}},{"rid":1007,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":7},"dir":4},"_x":0,"_y":7}},{"rid":1008,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":8},"dir":4},"_x":0,"_y":8}},{"rid":1009,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":9},"dir":4},"_x":0,"_y":9}},{"rid":1010,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":10},"dir":4},"_x":0,"_y":10}},{"rid":1011,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":11},"dir":4},"_x":0,"_y":11}},{"rid":1012,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":0},"dir":0},"_x":1,"_y":0}},{"rid":1013,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":1},"dir":0},"_x":1,"_y":1}},{"rid":1014,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":2},"dir":0},"_x":1,"_y":2}},{"rid":1015,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":3},"dir":0},"_x":1,"_y":3}},{"rid":1016,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":4},"dir":4},"_x":1,"_y":4}},{"rid":1017,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":5},"dir":4},"_x":1,"_y":5}},{"rid":1018,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":6},"dir":4},"_x":1,"_y":6}},{"rid":1019,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":7},"dir":4},"_x":1,"_y":7}},{"rid":1020,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":8},"dir":4},"_x":1,"_y":8}},{"rid":1021,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":9},"dir":4},"_x":1,"_y":9}},{"rid":1022,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":10},"dir":4},"_x":1,"_y":10}},{"rid":1023,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":11},"dir":4},"_x":1,"_y":11}},{"rid":1024,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":0},"dir":0},"_x":2,"_y":0}},{"rid":1025,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":1},"dir":0},"_x":2,"_y":1}},{"rid":1026,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":2},"dir":0},"_x":2,"_y":2}},{"rid":1027,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":3},"dir":0},"_x":2,"_y":3}},{"rid":1028,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":4},"dir":0},"_x":2,"_y":4}},{"rid":1029,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":5},"dir":0},"_x":2,"_y":5}},{"rid":1030,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":6},"dir":0},"_x":2,"_y":6}},{"rid":1031,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":7},"dir":0},"_x":2,"_y":7}},{"rid":1032,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":8},"dir":4},"_x":2,"_y":8}},{"rid":1033,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":9},"dir":4},"_x":2,"_y":9}},{"rid":1034,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":10},"dir":4},"_x":2,"_y":10}},{"rid":1035,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":11},"dir":4},"_x":2,"_y":11}},{"rid":1036,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":12},"dir":4},"_x":2,"_y":12}},{"rid":1037,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":0},"dir":0},"_x":3,"_y":0}},{"rid":1038,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":1},"dir":0},"_x":3,"_y":1}},{"rid":1039,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":2},"dir":0},"_x":3,"_y":2}},{"rid":1040,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":3},"dir":0},"_x":3,"_y":3}},{"rid":1041,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":4},"dir":0},"_x":3,"_y":4}},{"rid":1042,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":5},"dir":0},"_x":3,"_y":5}},{"rid":1043,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":6},"dir":0},"_x":3,"_y":6}},{"rid":1044,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":7},"dir":0},"_x":3,"_y":7}},{"rid":1045,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":8},"dir":4},"_x":3,"_y":8}},{"rid":1046,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":9},"dir":4},"_x":3,"_y":9}},{"rid":1047,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":10},"dir":4},"_x":3,"_y":10}},{"rid":1048,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":11},"dir":4},"_x":3,"_y":11}},{"rid":1049,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":12},"dir":4},"_x":3,"_y":12}},{"rid":1050,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":0},"dir":0},"_x":4,"_y":0}},{"rid":1051,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":1},"dir":0},"_x":4,"_y":1}},{"rid":1052,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":2},"dir":0},"_x":4,"_y":2}},{"rid":1053,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":3},"dir":0},"_x":4,"_y":3}},{"rid":1054,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":4},"dir":0},"_x":4,"_y":4}},{"rid":1055,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":5},"dir":0},"_x":4,"_y":5}},{"rid":1056,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":6},"dir":0},"_x":4,"_y":6}},{"rid":1057,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":7},"dir":0},"_x":4,"_y":7}},{"rid":1058,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":8},"dir":4},"_x":4,"_y":8}},{"rid":1059,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":9},"dir":4},"_x":4,"_y":9}},{"rid":1060,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":10},"dir":4},"_x":4,"_y":10}},{"rid":1061,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":11},"dir":4},"_x":4,"_y":11}},{"rid":1062,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":12},"dir":4},"_x":4,"_y":12}},{"rid":1063,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":13},"dir":4},"_x":4,"_y":13}},{"rid":1064,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":0},"dir":0},"_x":5,"_y":0}},{"rid":1065,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":1},"dir":0},"_x":5,"_y":1}},{"rid":1066,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":2},"dir":0},"_x":5,"_y":2}},{"rid":1067,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":3},"dir":0},"_x":5,"_y":3}},{"rid":1068,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":4},"dir":0},"_x":5,"_y":4}},{"rid":1069,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":5},"dir":0},"_x":5,"_y":5}},{"rid":1070,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":6},"dir":0},"_x":5,"_y":6}},{"rid":1071,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":7},"dir":0},"_x":5,"_y":7}},{"rid":1072,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":8},"dir":4},"_x":5,"_y":8}},{"rid":1073,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":9},"dir":4},"_x":5,"_y":9}},{"rid":1074,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":10},"dir":4},"_x":5,"_y":10}},{"rid":1075,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":11},"dir":4},"_x":5,"_y":11}},{"rid":1076,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":12},"dir":4},"_x":5,"_y":12}},{"rid":1077,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":13},"dir":4},"_x":5,"_y":13}},{"rid":1078,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":0},"dir":0},"_x":6,"_y":0}},{"rid":1079,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":1},"dir":0},"_x":6,"_y":1}},{"rid":1080,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":2},"dir":0},"_x":6,"_y":2}},{"rid":1081,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":3},"dir":0},"_x":6,"_y":3}},{"rid":1082,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":4},"dir":0},"_x":6,"_y":4}},{"rid":1083,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":5},"dir":0},"_x":6,"_y":5}},{"rid":1084,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":6},"dir":0},"_x":6,"_y":6}},{"rid":1085,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":7},"dir":0},"_x":6,"_y":7}},{"rid":1086,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":8},"dir":4},"_x":6,"_y":8}},{"rid":1087,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":9},"dir":4},"_x":6,"_y":9}},{"rid":1088,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":10},"dir":4},"_x":6,"_y":10}},{"rid":1089,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":11},"dir":4},"_x":6,"_y":11}},{"rid":1090,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":12},"dir":4},"_x":6,"_y":12}},{"rid":1091,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":13},"dir":4},"_x":6,"_y":13}},{"rid":1092,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":0},"dir":0},"_x":7,"_y":0}},{"rid":1093,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":1},"dir":0},"_x":7,"_y":1}},{"rid":1094,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":2},"dir":0},"_x":7,"_y":2}},{"rid":1095,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":3},"dir":0},"_x":7,"_y":3}},{"rid":1096,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":4},"dir":0},"_x":7,"_y":4}},{"rid":1097,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":5},"dir":0},"_x":7,"_y":5}},{"rid":1098,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":6},"dir":0},"_x":7,"_y":6}},{"rid":1099,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":7},"dir":0},"_x":7,"_y":7}},{"rid":1100,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":8},"dir":4},"_x":7,"_y":8}},{"rid":1101,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":9},"dir":4},"_x":7,"_y":9}},{"rid":1102,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":10},"dir":4},"_x":7,"_y":10}},{"rid":1103,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":11},"dir":4},"_x":7,"_y":11}},{"rid":1104,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":12},"dir":4},"_x":7,"_y":12}},{"rid":1105,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":13},"dir":4},"_x":7,"_y":13}},{"rid":1106,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":0},"dir":0},"_x":8,"_y":0}},{"rid":1107,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":1},"dir":0},"_x":8,"_y":1}},{"rid":1108,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":2},"dir":0},"_x":8,"_y":2}},{"rid":1109,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":3},"dir":0},"_x":8,"_y":3}},{"rid":1110,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":4},"dir":0},"_x":8,"_y":4}},{"rid":1111,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":5},"dir":0},"_x":8,"_y":5}},{"rid":1112,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":6},"dir":0},"_x":8,"_y":6}},{"rid":1113,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":7},"dir":0},"_x":8,"_y":7}},{"rid":1114,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":8},"dir":4},"_x":8,"_y":8}},{"rid":1115,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":9},"dir":4},"_x":8,"_y":9}},{"rid":1116,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":10},"dir":4},"_x":8,"_y":10}},{"rid":1117,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":11},"dir":4},"_x":8,"_y":11}},{"rid":1118,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":12},"dir":4},"_x":8,"_y":12}},{"rid":1119,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":13},"dir":4},"_x":8,"_y":13}},{"rid":1120,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":0},"dir":0},"_x":9,"_y":0}},{"rid":1121,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":1},"dir":0},"_x":9,"_y":1}},{"rid":1122,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":2},"dir":0},"_x":9,"_y":2}},{"rid":1123,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":3},"dir":0},"_x":9,"_y":3}},{"rid":1124,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":4},"dir":0},"_x":9,"_y":4}},{"rid":1125,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":5},"dir":0},"_x":9,"_y":5}},{"rid":1126,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":6},"dir":0},"_x":9,"_y":6}},{"rid":1127,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":7},"dir":0},"_x":9,"_y":7}},{"rid":1128,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":8},"dir":4},"_x":9,"_y":8}},{"rid":1129,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":9},"dir":4},"_x":9,"_y":9}},{"rid":1130,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":10},"dir":4},"_x":9,"_y":10}},{"rid":1131,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":11},"dir":4},"_x":9,"_y":11}},{"rid":1132,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":12},"dir":4},"_x":9,"_y":12}},{"rid":1133,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":0},"dir":0},"_x":10,"_y":0}},{"rid":1134,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":1},"dir":0},"_x":10,"_y":1}},{"rid":1135,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":2},"dir":0},"_x":10,"_y":2}},{"rid":1136,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":3},"dir":0},"_x":10,"_y":3}},{"rid":1137,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":4},"dir":0},"_x":10,"_y":4}},{"rid":1138,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":5},"dir":0},"_x":10,"_y":5}},{"rid":1139,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":6},"dir":0},"_x":10,"_y":6}},{"rid":1140,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":7},"dir":0},"_x":10,"_y":7}},{"rid":1141,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":8},"dir":4},"_x":10,"_y":8}},{"rid":1142,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":9},"dir":4},"_x":10,"_y":9}},{"rid":1143,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":10},"dir":4},"_x":10,"_y":10}},{"rid":1144,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":11},"dir":4},"_x":10,"_y":11}},{"rid":1145,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":12},"dir":4},"_x":10,"_y":12}},{"rid":1146,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":0},"dir":0},"_x":11,"_y":0}},{"rid":1147,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":1},"dir":0},"_x":11,"_y":1}},{"rid":1148,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":2},"dir":0},"_x":11,"_y":2}},{"rid":1149,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":3},"dir":0},"_x":11,"_y":3}},{"rid":1150,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":4},"dir":4},"_x":11,"_y":4}},{"rid":1151,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":5},"dir":4},"_x":11,"_y":5}},{"rid":1152,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":6},"dir":4},"_x":11,"_y":6}},{"rid":1153,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":7},"dir":4},"_x":11,"_y":7}},{"rid":1154,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":8},"dir":4},"_x":11,"_y":8}},{"rid":1155,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":9},"dir":4},"_x":11,"_y":9}},{"rid":1156,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":10},"dir":4},"_x":11,"_y":10}},{"rid":1157,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":11},"dir":4},"_x":11,"_y":11}},{"rid":1158,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":0},"dir":0},"_x":12,"_y":0}},{"rid":1159,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":1},"dir":0},"_x":12,"_y":1}},{"rid":1160,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":2},"dir":0},"_x":12,"_y":2}},{"rid":1161,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":3},"dir":0},"_x":12,"_y":3}},{"rid":1162,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":4},"dir":4},"_x":12,"_y":4}},{"rid":1163,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":5},"dir":4},"_x":12,"_y":5}},{"rid":1164,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":6},"dir":4},"_x":12,"_y":6}},{"rid":1165,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":7},"dir":4},"_x":12,"_y":7}},{"rid":1166,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":8},"dir":4},"_x":12,"_y":8}},{"rid":1167,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":9},"dir":4},"_x":12,"_y":9}},{"rid":1168,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":10},"dir":4},"_x":12,"_y":10}},{"rid":1169,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":11},"dir":4},"_x":12,"_y":11}},{"rid":1170,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":0},"dir":0},"_x":13,"_y":0}},{"rid":1171,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":1},"dir":0},"_x":13,"_y":1}},{"rid":1172,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":2},"dir":0},"_x":13,"_y":2}},{"rid":1173,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":3},"dir":0},"_x":13,"_y":3}},{"rid":1174,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":4},"dir":4},"_x":13,"_y":4}},{"rid":1175,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":5},"dir":4},"_x":13,"_y":5}},{"rid":1176,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":6},"dir":4},"_x":13,"_y":6}},{"rid":1177,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":7},"dir":4},"_x":13,"_y":7}},{"rid":1178,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":8},"dir":4},"_x":13,"_y":8}},{"rid":1179,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":9},"dir":4},"_x":13,"_y":9}},{"rid":1180,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":10},"dir":4},"_x":13,"_y":10}},{"rid":1181,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":11},"dir":4},"_x":13,"_y":11}},{"rid":1182,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":0},"dir":0},"_x":14,"_y":0}},{"rid":1183,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":1},"dir":0},"_x":14,"_y":1}},{"rid":1184,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":2},"dir":0},"_x":14,"_y":2}},{"rid":1185,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":3},"dir":0},"_x":14,"_y":3}},{"rid":1186,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":4},"dir":4},"_x":14,"_y":4}},{"rid":1187,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":5},"dir":4},"_x":14,"_y":5}},{"rid":1188,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":6},"dir":4},"_x":14,"_y":6}},{"rid":1189,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":7},"dir":4},"_x":14,"_y":7}},{"rid":1190,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":8},"dir":4},"_x":14,"_y":8}},{"rid":1191,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":0},"dir":0},"_x":15,"_y":0}},{"rid":1192,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":1},"dir":0},"_x":15,"_y":1}},{"rid":1193,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":2},"dir":0},"_x":15,"_y":2}},{"rid":1194,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":3},"dir":0},"_x":15,"_y":3}},{"rid":1195,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":4},"dir":4},"_x":15,"_y":4}},{"rid":1196,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":5},"dir":4},"_x":15,"_y":5}},{"rid":1197,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":6},"dir":4},"_x":15,"_y":6}},{"rid":1198,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":7},"dir":4},"_x":15,"_y":7}},{"rid":1199,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":0,"y":0},"dir":0},"_x":0,"_y":0}},{"rid":1200,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":0,"y":1},"dir":0},"_x":0,"_y":1}},{"rid":1201,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":0,"y":2},"dir":0},"_x":0,"_y":2}},{"rid":1202,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":0,"y":3},"dir":0},"_x":0,"_y":3}},{"rid":1203,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":1,"y":0},"dir":0},"_x":1,"_y":0}},{"rid":1204,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":1,"y":1},"dir":0},"_x":1,"_y":1}},{"rid":1205,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":1,"y":2},"dir":0},"_x":1,"_y":2}},{"rid":1206,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":1,"y":3},"dir":0},"_x":1,"_y":3}},{"rid":1207,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":1,"y":7},"dir":4},"_x":1,"_y":7}},{"rid":1208,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":2,"y":0},"dir":0},"_x":2,"_y":0}},{"rid":1209,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":2,"y":1},"dir":0},"_x":2,"_y":1}},{"rid":1210,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":2,"y":2},"dir":0},"_x":2,"_y":2}},{"rid":1211,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":2,"y":3},"dir":0},"_x":2,"_y":3}},{"rid":1212,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":2,"y":4},"dir":0},"_x":2,"_y":4}},{"rid":1213,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"AirlockCivilian","origin":{"x":2,"y":5},"dir":2},"_x":2,"_y":5}},{"rid":1214,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":2,"y":6},"dir":0},"_x":2,"_y":6}},{"rid":1215,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWallReinforced","origin":{"x":2,"y":7},"dir":4},"_x":2,"_y":7}},{"rid":1216,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWallReinforced","origin":{"x":2,"y":8},"dir":4},"_x":2,"_y":8}},{"rid":1217,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"AirlockSecurity","origin":{"x":2,"y":9},"dir":2},"_x":2,"_y":9}},{"rid":1218,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWallReinforced","origin":{"x":2,"y":10},"dir":4},"_x":2,"_y":10}},{"rid":1219,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWallReinforced","origin":{"x":2,"y":11},"dir":4},"_x":2,"_y":11}},{"rid":1220,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWallReinforced","origin":{"x":2,"y":12},"dir":4},"_x":2,"_y":12}},{"rid":1221,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":3,"y":0},"dir":0},"_x":3,"_y":0}},{"rid":1222,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":3,"y":1},"dir":0},"_x":3,"_y":1}},{"rid":1223,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":3,"y":2},"dir":0},"_x":3,"_y":2}},{"rid":1224,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":3,"y":3},"dir":0},"_x":3,"_y":3}},{"rid":1225,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":3,"y":4},"dir":0},"_x":3,"_y":4}},{"rid":1226,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":3,"y":5},"dir":0},"_x":3,"_y":5}},{"rid":1227,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":3,"y":6},"dir":0},"_x":3,"_y":6}},{"rid":1228,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWallReinforced","origin":{"x":3,"y":7},"dir":4},"_x":3,"_y":7}},{"rid":1229,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":3,"y":8},"dir":4},"_x":3,"_y":8}},{"rid":1230,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":3,"y":9},"dir":4},"_x":3,"_y":9}},{"rid":1231,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":3,"y":10},"dir":4},"_x":3,"_y":10}},{"rid":1232,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":3,"y":11},"dir":4},"_x":3,"_y":11}},{"rid":1233,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWallReinforced","origin":{"x":3,"y":12},"dir":4},"_x":3,"_y":12}},{"rid":1234,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":4,"y":0},"dir":2},"_x":4,"_y":0}},{"rid":1235,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":4,"y":1},"dir":2},"_x":4,"_y":1}},{"rid":1236,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":4,"y":2},"dir":4},"_x":4,"_y":2}},{"rid":1237,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileCarpet","origin":{"x":4,"y":3},"dir":0},"_x":4,"_y":3}},{"rid":1238,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileCarpet","origin":{"x":4,"y":4},"dir":0},"_x":4,"_y":4}},{"rid":1239,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileCarpet","origin":{"x":4,"y":5},"dir":0},"_x":4,"_y":5}},{"rid":1240,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":4,"y":6},"dir":0},"_x":4,"_y":6}},{"rid":1241,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWindowReinforced","origin":{"x":4,"y":7},"dir":4},"_x":4,"_y":7}},{"rid":1242,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":4,"y":8},"dir":4},"_x":4,"_y":8}},{"rid":1243,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":4,"y":9},"dir":4},"_x":4,"_y":9}},{"rid":1244,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":4,"y":10},"dir":4},"_x":4,"_y":10}},{"rid":1245,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":4,"y":11},"dir":4},"_x":4,"_y":11}},{"rid":1246,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWindowReinforced","origin":{"x":4,"y":12},"dir":4},"_x":4,"_y":12}},{"rid":1247,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWindowReinforced","origin":{"x":4,"y":13},"dir":4},"_x":4,"_y":13}},{"rid":1248,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":5,"y":0},"dir":2},"_x":5,"_y":0}},{"rid":1249,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":5,"y":1},"dir":4},"_x":5,"_y":1}},{"rid":1250,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":5,"y":2},"dir":4},"_x":5,"_y":2}},{"rid":1251,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileCarpet","origin":{"x":5,"y":3},"dir":0},"_x":5,"_y":3}},{"rid":1252,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileCarpet","origin":{"x":5,"y":4},"dir":0},"_x":5,"_y":4}},{"rid":1253,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileCarpet","origin":{"x":5,"y":5},"dir":0},"_x":5,"_y":5}},{"rid":1254,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":5,"y":6},"dir":0},"_x":5,"_y":6}},{"rid":1255,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"AirlockSecurity","origin":{"x":5,"y":7},"dir":4},"_x":5,"_y":7}},{"rid":1256,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":5,"y":8},"dir":4},"_x":5,"_y":8}},{"rid":1257,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":5,"y":9},"dir":4},"_x":5,"_y":9}},{"rid":1258,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":5,"y":10},"dir":4},"_x":5,"_y":10}},{"rid":1259,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":5,"y":11},"dir":4},"_x":5,"_y":11}},{"rid":1260,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":5,"y":12},"dir":4},"_x":5,"_y":12}},{"rid":1261,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWindowReinforced","origin":{"x":5,"y":13},"dir":4},"_x":5,"_y":13}},{"rid":1262,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":6,"y":0},"dir":2},"_x":6,"_y":0}},{"rid":1263,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":6,"y":1},"dir":4},"_x":6,"_y":1}},{"rid":1264,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":6,"y":2},"dir":4},"_x":6,"_y":2}},{"rid":1265,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileCarpet","origin":{"x":6,"y":3},"dir":0},"_x":6,"_y":3}},{"rid":1266,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileCarpet","origin":{"x":6,"y":4},"dir":0},"_x":6,"_y":4}},{"rid":1267,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileCarpet","origin":{"x":6,"y":5},"dir":0},"_x":6,"_y":5}},{"rid":1268,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":6,"y":6},"dir":0},"_x":6,"_y":6}},{"rid":1269,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWindowReinforced","origin":{"x":6,"y":7},"dir":4},"_x":6,"_y":7}},{"rid":1270,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":6,"y":8},"dir":4},"_x":6,"_y":8}},{"rid":1271,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":6,"y":9},"dir":4},"_x":6,"_y":9}},{"rid":1272,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":6,"y":10},"dir":4},"_x":6,"_y":10}},{"rid":1273,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":6,"y":11},"dir":4},"_x":6,"_y":11}},{"rid":1274,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":6,"y":12},"dir":4},"_x":6,"_y":12}},{"rid":1275,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWindowReinforced","origin":{"x":6,"y":13},"dir":4},"_x":6,"_y":13}},{"rid":1276,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":7,"y":0},"dir":2},"_x":7,"_y":0}},{"rid":1277,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":7,"y":1},"dir":4},"_x":7,"_y":1}},{"rid":1278,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":7,"y":2},"dir":4},"_x":7,"_y":2}},{"rid":1279,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileCarpet","origin":{"x":7,"y":3},"dir":0},"_x":7,"_y":3}},{"rid":1280,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileCarpet","origin":{"x":7,"y":4},"dir":0},"_x":7,"_y":4}},{"rid":1281,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileCarpet","origin":{"x":7,"y":5},"dir":0},"_x":7,"_y":5}},{"rid":1282,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":7,"y":6},"dir":0},"_x":7,"_y":6}},{"rid":1283,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"AirlockSecurity","origin":{"x":7,"y":7},"dir":4},"_x":7,"_y":7}},{"rid":1284,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":7,"y":8},"dir":4},"_x":7,"_y":8}},{"rid":1285,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":7,"y":9},"dir":4},"_x":7,"_y":9}},{"rid":1286,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":7,"y":10},"dir":4},"_x":7,"_y":10}},{"rid":1287,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":7,"y":11},"dir":4},"_x":7,"_y":11}},{"rid":1288,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":7,"y":12},"dir":4},"_x":7,"_y":12}},{"rid":1289,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWindowReinforced","origin":{"x":7,"y":13},"dir":4},"_x":7,"_y":13}},{"rid":1290,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":8,"y":0},"dir":2},"_x":8,"_y":0}},{"rid":1291,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":8,"y":1},"dir":2},"_x":8,"_y":1}},{"rid":1292,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":8,"y":2},"dir":4},"_x":8,"_y":2}},{"rid":1293,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileCarpet","origin":{"x":8,"y":3},"dir":0},"_x":8,"_y":3}},{"rid":1294,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileCarpet","origin":{"x":8,"y":4},"dir":0},"_x":8,"_y":4}},{"rid":1295,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileCarpet","origin":{"x":8,"y":5},"dir":0},"_x":8,"_y":5}},{"rid":1296,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":8,"y":6},"dir":0},"_x":8,"_y":6}},{"rid":1297,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWindowReinforced","origin":{"x":8,"y":7},"dir":4},"_x":8,"_y":7}},{"rid":1298,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":8,"y":8},"dir":4},"_x":8,"_y":8}},{"rid":1299,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":8,"y":9},"dir":4},"_x":8,"_y":9}},{"rid":1300,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":8,"y":10},"dir":4},"_x":8,"_y":10}},{"rid":1301,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":8,"y":11},"dir":4},"_x":8,"_y":11}},{"rid":1302,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWindowReinforced","origin":{"x":8,"y":12},"dir":4},"_x":8,"_y":12}},{"rid":1303,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWindowReinforced","origin":{"x":8,"y":13},"dir":4},"_x":8,"_y":13}},{"rid":1304,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":9,"y":0},"dir":2},"_x":9,"_y":0}},{"rid":1305,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":9,"y":1},"dir":2},"_x":9,"_y":1}},{"rid":1306,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":9,"y":2},"dir":4},"_x":9,"_y":2}},{"rid":1307,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":9,"y":3},"dir":0},"_x":9,"_y":3}},{"rid":1308,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":9,"y":4},"dir":0},"_x":9,"_y":4}},{"rid":1309,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":9,"y":5},"dir":0},"_x":9,"_y":5}},{"rid":1310,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":9,"y":6},"dir":0},"_x":9,"_y":6}},{"rid":1311,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWallReinforced","origin":{"x":9,"y":7},"dir":4},"_x":9,"_y":7}},{"rid":1312,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":9,"y":8},"dir":4},"_x":9,"_y":8}},{"rid":1313,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":9,"y":9},"dir":4},"_x":9,"_y":9}},{"rid":1314,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":9,"y":10},"dir":4},"_x":9,"_y":10}},{"rid":1315,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileGreyDark","origin":{"x":9,"y":11},"dir":4},"_x":9,"_y":11}},{"rid":1316,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWallReinforced","origin":{"x":9,"y":12},"dir":4},"_x":9,"_y":12}},{"rid":1317,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":10,"y":0},"dir":0},"_x":10,"_y":0}},{"rid":1318,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":10,"y":1},"dir":0},"_x":10,"_y":1}},{"rid":1319,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":10,"y":2},"dir":0},"_x":10,"_y":2}},{"rid":1320,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":10,"y":3},"dir":2},"_x":10,"_y":3}},{"rid":1321,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":10,"y":4},"dir":0},"_x":10,"_y":4}},{"rid":1322,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"AirlockCivilian","origin":{"x":10,"y":5},"dir":2},"_x":10,"_y":5}},{"rid":1323,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":10,"y":6},"dir":2},"_x":10,"_y":6}},{"rid":1324,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWallReinforced","origin":{"x":10,"y":7},"dir":4},"_x":10,"_y":7}},{"rid":1325,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWallReinforced","origin":{"x":10,"y":8},"dir":4},"_x":10,"_y":8}},{"rid":1326,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"AirlockSecurity","origin":{"x":10,"y":9},"dir":2},"_x":10,"_y":9}},{"rid":1327,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWallReinforced","origin":{"x":10,"y":10},"dir":4},"_x":10,"_y":10}},{"rid":1328,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWallReinforced","origin":{"x":10,"y":11},"dir":4},"_x":10,"_y":11}},{"rid":1329,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWallReinforced","origin":{"x":10,"y":12},"dir":4},"_x":10,"_y":12}},{"rid":1330,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":11,"y":0},"dir":0},"_x":11,"_y":0}},{"rid":1331,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":11,"y":1},"dir":0},"_x":11,"_y":1}},{"rid":1332,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":11,"y":2},"dir":0},"_x":11,"_y":2}},{"rid":1333,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":11,"y":3},"dir":0},"_x":11,"_y":3}},{"rid":1334,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":11,"y":7},"dir":4},"_x":11,"_y":7}},{"rid":1335,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":12,"y":0},"dir":0},"_x":12,"_y":0}},{"rid":1336,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":12,"y":1},"dir":0},"_x":12,"_y":1}},{"rid":1337,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":12,"y":2},"dir":0},"_x":12,"_y":2}},{"rid":1338,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":12,"y":3},"dir":0},"_x":12,"_y":3}},{"rid":1339,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":13,"y":0},"dir":0},"_x":13,"_y":0}},{"rid":1340,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":13,"y":1},"dir":0},"_x":13,"_y":1}},{"rid":1341,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":13,"y":2},"dir":0},"_x":13,"_y":2}},{"rid":1342,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":13,"y":3},"dir":0},"_x":13,"_y":3}},{"rid":1343,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":14,"y":0},"dir":0},"_x":14,"_y":0}},{"rid":1344,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":14,"y":1},"dir":0},"_x":14,"_y":1}},{"rid":1345,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":14,"y":2},"dir":0},"_x":14,"_y":2}},{"rid":1346,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":14,"y":3},"dir":0},"_x":14,"_y":3}},{"rid":1347,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":15,"y":0},"dir":0},"_x":15,"_y":0}},{"rid":1348,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":15,"y":1},"dir":0},"_x":15,"_y":1}},{"rid":1349,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":15,"y":2},"dir":0},"_x":15,"_y":2}},{"rid":1350,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":15,"y":3},"dir":0},"_x":15,"_y":3}},{"rid":1351,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightBulbFixture","origin":{"x":2,"y":4},"dir":2}],"x":2,"y":4}},{"rid":1352,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightTubeFixture","origin":{"x":6,"y":7},"dir":0},{"tileObjectSOName":"LightTubeFixture","origin":{"x":6,"y":7},"dir":4}],"x":6,"y":7}},{"rid":1353,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightTubeFixture","origin":{"x":6,"y":13},"dir":4}],"x":6,"y":13}},{"rid":1354,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightBulbFixture","origin":{"x":10,"y":4},"dir":6}],"x":10,"y":4}},{"rid":1355,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightTubeFixture","origin":{"x":15,"y":3},"dir":4}],"x":15,"y":3}},{"rid":1356,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"AirAlarm","origin":{"x":2,"y":11},"dir":2}],"x":2,"y":11}},{"rid":1357,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"APC","origin":{"x":3,"y":7},"dir":0}],"x":3,"y":7}},{"rid":1358,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightSwitch","origin":{"x":9,"y":7},"dir":0}],"x":9,"y":7}},{"rid":1359,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"FireAlarm","origin":{"x":10,"y":11},"dir":6}],"x":10,"y":11}},{"rid":1360,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"APC","origin":{"x":12,"y":3},"dir":0}],"x":12,"y":3}},{"rid":1361,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"JukeboxBlueGreen","origin":{"x":2,"y":2},"dir":4},"_x":2,"_y":2}},{"rid":1362,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plant0","origin":{"x":3,"y":8},"dir":0},"_x":3,"_y":8}},{"rid":1363,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableSteel","origin":{"x":3,"y":11},"dir":4},"_x":3,"_y":11}},{"rid":1364,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"WaterCooler","origin":{"x":4,"y":8},"dir":0},"_x":4,"_y":8}},{"rid":1365,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableSteel","origin":{"x":4,"y":11},"dir":4},"_x":4,"_y":11}},{"rid":1366,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Vent","origin":{"x":5,"y":9},"dir":0},"_x":5,"_y":9}},{"rid":1367,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"OfficeChair","origin":{"x":5,"y":11},"dir":0},"_x":5,"_y":11}},{"rid":1368,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableSteel","origin":{"x":5,"y":12},"dir":4},"_x":5,"_y":12}},{"rid":1369,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableSteel","origin":{"x":6,"y":12},"dir":4},"_x":6,"_y":12}},{"rid":1370,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Scrubber","origin":{"x":7,"y":9},"dir":0},"_x":7,"_y":9}},{"rid":1371,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"OfficeChair","origin":{"x":7,"y":11},"dir":0},"_x":7,"_y":11}},{"rid":1372,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableSteel","origin":{"x":7,"y":12},"dir":4},"_x":7,"_y":12}},{"rid":1373,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"NukeCart","origin":{"x":8,"y":8},"dir":2},"_x":8,"_y":8}},{"rid":1374,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableSteel","origin":{"x":8,"y":11},"dir":4},"_x":8,"_y":11}},{"rid":1375,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DisposalBin","origin":{"x":9,"y":8},"dir":0},"_x":9,"_y":8}},{"rid":1376,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableSteel","origin":{"x":9,"y":11},"dir":4},"_x":9,"_y":11}},{"rid":1377,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plant0","origin":{"x":11,"y":6},"dir":0},"_x":11,"_y":6}},{"rid":1378,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":8},"dir":0},"_x":0,"_y":8}},{"rid":1379,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":9},"dir":0},"_x":0,"_y":9}},{"rid":1380,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":10},"dir":0},"_x":0,"_y":10}},{"rid":1381,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":11},"dir":0},"_x":0,"_y":11}},{"rid":1382,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":12},"dir":0},"_x":0,"_y":12}},{"rid":1383,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":13},"dir":0},"_x":0,"_y":13}},{"rid":1384,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":14},"dir":0},"_x":0,"_y":14}},{"rid":1385,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":15},"dir":0},"_x":0,"_y":15}},{"rid":1386,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":8},"dir":0},"_x":1,"_y":8}},{"rid":1387,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":9},"dir":0},"_x":1,"_y":9}},{"rid":1388,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":10},"dir":0},"_x":1,"_y":10}},{"rid":1389,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":11},"dir":0},"_x":1,"_y":11}},{"rid":1390,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":12},"dir":0},"_x":1,"_y":12}},{"rid":1391,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":13},"dir":0},"_x":1,"_y":13}},{"rid":1392,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":14},"dir":0},"_x":1,"_y":14}},{"rid":1393,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":15},"dir":0},"_x":1,"_y":15}},{"rid":1394,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":8},"dir":0},"_x":2,"_y":8}},{"rid":1395,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":9},"dir":0},"_x":2,"_y":9}},{"rid":1396,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":10},"dir":0},"_x":2,"_y":10}},{"rid":1397,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":11},"dir":0},"_x":2,"_y":11}},{"rid":1398,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":12},"dir":0},"_x":2,"_y":12}},{"rid":1399,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":13},"dir":0},"_x":2,"_y":13}},{"rid":1400,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":14},"dir":0},"_x":2,"_y":14}},{"rid":1401,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":2,"y":15},"dir":0},"_x":2,"_y":15}},{"rid":1402,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":8},"dir":0},"_x":3,"_y":8}},{"rid":1403,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":9},"dir":0},"_x":3,"_y":9}},{"rid":1404,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":10},"dir":0},"_x":3,"_y":10}},{"rid":1405,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":11},"dir":0},"_x":3,"_y":11}},{"rid":1406,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":12},"dir":0},"_x":3,"_y":12}},{"rid":1407,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":13},"dir":0},"_x":3,"_y":13}},{"rid":1408,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":14},"dir":0},"_x":3,"_y":14}},{"rid":1409,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":3,"y":15},"dir":0},"_x":3,"_y":15}},{"rid":1410,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":7},"dir":6},"_x":4,"_y":7}},{"rid":1411,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":8},"dir":2},"_x":4,"_y":8}},{"rid":1412,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":9},"dir":2},"_x":4,"_y":9}},{"rid":1413,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":10},"dir":2},"_x":4,"_y":10}},{"rid":1414,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":11},"dir":2},"_x":4,"_y":11}},{"rid":1415,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":12},"dir":2},"_x":4,"_y":12}},{"rid":1416,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":13},"dir":2},"_x":4,"_y":13}},{"rid":1417,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":14},"dir":2},"_x":4,"_y":14}},{"rid":1418,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":4,"y":15},"dir":0},"_x":4,"_y":15}},{"rid":1419,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":5},"dir":6},"_x":5,"_y":5}},{"rid":1420,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":6},"dir":6},"_x":5,"_y":6}},{"rid":1421,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":7},"dir":6},"_x":5,"_y":7}},{"rid":1422,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":8},"dir":2},"_x":5,"_y":8}},{"rid":1423,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":9},"dir":2},"_x":5,"_y":9}},{"rid":1424,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":10},"dir":2},"_x":5,"_y":10}},{"rid":1425,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":11},"dir":2},"_x":5,"_y":11}},{"rid":1426,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":12},"dir":2},"_x":5,"_y":12}},{"rid":1427,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":13},"dir":2},"_x":5,"_y":13}},{"rid":1428,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":14},"dir":2},"_x":5,"_y":14}},{"rid":1429,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":5,"y":15},"dir":0},"_x":5,"_y":15}},{"rid":1430,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":5},"dir":6},"_x":6,"_y":5}},{"rid":1431,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":6},"dir":6},"_x":6,"_y":6}},{"rid":1432,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":7},"dir":6},"_x":6,"_y":7}},{"rid":1433,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":8},"dir":2},"_x":6,"_y":8}},{"rid":1434,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":9},"dir":2},"_x":6,"_y":9}},{"rid":1435,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":10},"dir":2},"_x":6,"_y":10}},{"rid":1436,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":11},"dir":2},"_x":6,"_y":11}},{"rid":1437,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":12},"dir":2},"_x":6,"_y":12}},{"rid":1438,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":13},"dir":2},"_x":6,"_y":13}},{"rid":1439,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":14},"dir":2},"_x":6,"_y":14}},{"rid":1440,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":6,"y":15},"dir":0},"_x":6,"_y":15}},{"rid":1441,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":5},"dir":6},"_x":7,"_y":5}},{"rid":1442,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":6},"dir":6},"_x":7,"_y":6}},{"rid":1443,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":7},"dir":6},"_x":7,"_y":7}},{"rid":1444,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":8},"dir":2},"_x":7,"_y":8}},{"rid":1445,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":9},"dir":2},"_x":7,"_y":9}},{"rid":1446,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":10},"dir":2},"_x":7,"_y":10}},{"rid":1447,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":11},"dir":2},"_x":7,"_y":11}},{"rid":1448,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":12},"dir":2},"_x":7,"_y":12}},{"rid":1449,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":13},"dir":2},"_x":7,"_y":13}},{"rid":1450,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":14},"dir":2},"_x":7,"_y":14}},{"rid":1451,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":7,"y":15},"dir":0},"_x":7,"_y":15}},{"rid":1452,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":7},"dir":6},"_x":8,"_y":7}},{"rid":1453,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":8},"dir":2},"_x":8,"_y":8}},{"rid":1454,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":9},"dir":2},"_x":8,"_y":9}},{"rid":1455,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":10},"dir":2},"_x":8,"_y":10}},{"rid":1456,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":11},"dir":2},"_x":8,"_y":11}},{"rid":1457,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":12},"dir":2},"_x":8,"_y":12}},{"rid":1458,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":13},"dir":2},"_x":8,"_y":13}},{"rid":1459,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":14},"dir":2},"_x":8,"_y":14}},{"rid":1460,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":8,"y":15},"dir":0},"_x":8,"_y":15}},{"rid":1461,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":8},"dir":0},"_x":9,"_y":8}},{"rid":1462,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":9},"dir":0},"_x":9,"_y":9}},{"rid":1463,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":10},"dir":0},"_x":9,"_y":10}},{"rid":1464,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":11},"dir":0},"_x":9,"_y":11}},{"rid":1465,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":12},"dir":0},"_x":9,"_y":12}},{"rid":1466,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":13},"dir":0},"_x":9,"_y":13}},{"rid":1467,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":14},"dir":0},"_x":9,"_y":14}},{"rid":1468,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":15},"dir":0},"_x":9,"_y":15}},{"rid":1469,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":8},"dir":0},"_x":10,"_y":8}},{"rid":1470,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":9},"dir":0},"_x":10,"_y":9}},{"rid":1471,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":10},"dir":0},"_x":10,"_y":10}},{"rid":1472,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":11},"dir":0},"_x":10,"_y":11}},{"rid":1473,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":12},"dir":0},"_x":10,"_y":12}},{"rid":1474,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":13},"dir":0},"_x":10,"_y":13}},{"rid":1475,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":14},"dir":0},"_x":10,"_y":14}},{"rid":1476,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":15},"dir":0},"_x":10,"_y":15}},{"rid":1477,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":8},"dir":0},"_x":11,"_y":8}},{"rid":1478,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":9},"dir":0},"_x":11,"_y":9}},{"rid":1479,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":10},"dir":0},"_x":11,"_y":10}},{"rid":1480,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":11},"dir":0},"_x":11,"_y":11}},{"rid":1481,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":12},"dir":0},"_x":11,"_y":12}},{"rid":1482,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":13},"dir":0},"_x":11,"_y":13}},{"rid":1483,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":14},"dir":0},"_x":11,"_y":14}},{"rid":1484,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":15},"dir":0},"_x":11,"_y":15}},{"rid":1485,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":8},"dir":0},"_x":12,"_y":8}},{"rid":1486,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":9},"dir":0},"_x":12,"_y":9}},{"rid":1487,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":10},"dir":0},"_x":12,"_y":10}},{"rid":1488,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":11},"dir":0},"_x":12,"_y":11}},{"rid":1489,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":12},"dir":0},"_x":12,"_y":12}},{"rid":1490,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":13},"dir":0},"_x":12,"_y":13}},{"rid":1491,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":14},"dir":0},"_x":12,"_y":14}},{"rid":1492,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":15},"dir":0},"_x":12,"_y":15}},{"rid":1493,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":8},"dir":0},"_x":13,"_y":8}},{"rid":1494,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":9},"dir":0},"_x":13,"_y":9}},{"rid":1495,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":10},"dir":0},"_x":13,"_y":10}},{"rid":1496,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":11},"dir":0},"_x":13,"_y":11}},{"rid":1497,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":12},"dir":0},"_x":13,"_y":12}},{"rid":1498,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":13},"dir":0},"_x":13,"_y":13}},{"rid":1499,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":14},"dir":0},"_x":13,"_y":14}},{"rid":1500,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":15},"dir":0},"_x":13,"_y":15}},{"rid":1501,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":8},"dir":0},"_x":14,"_y":8}},{"rid":1502,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":9},"dir":0},"_x":14,"_y":9}},{"rid":1503,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":10},"dir":0},"_x":14,"_y":10}},{"rid":1504,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":11},"dir":0},"_x":14,"_y":11}},{"rid":1505,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":12},"dir":0},"_x":14,"_y":12}},{"rid":1506,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":13},"dir":0},"_x":14,"_y":13}},{"rid":1507,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":14},"dir":0},"_x":14,"_y":14}},{"rid":1508,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":15},"dir":0},"_x":14,"_y":15}},{"rid":1509,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":8},"dir":0},"_x":15,"_y":8}},{"rid":1510,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":9},"dir":0},"_x":15,"_y":9}},{"rid":1511,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":10},"dir":0},"_x":15,"_y":10}},{"rid":1512,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":11},"dir":0},"_x":15,"_y":11}},{"rid":1513,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":12},"dir":0},"_x":15,"_y":12}},{"rid":1514,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":13},"dir":0},"_x":15,"_y":13}},{"rid":1515,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":14},"dir":0},"_x":15,"_y":14}},{"rid":1516,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":15},"dir":0},"_x":15,"_y":15}},{"rid":1517,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":0,"y":8},"dir":0},"_x":0,"_y":8}},{"rid":1518,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":0,"y":9},"dir":0},"_x":0,"_y":9}},{"rid":1519,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":0,"y":10},"dir":0},"_x":0,"_y":10}},{"rid":1520,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":0,"y":11},"dir":0},"_x":0,"_y":11}},{"rid":1521,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":0,"y":12},"dir":0},"_x":0,"_y":12}},{"rid":1522,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":0,"y":13},"dir":0},"_x":0,"_y":13}},{"rid":1523,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":0,"y":14},"dir":0},"_x":0,"_y":14}},{"rid":1524,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":0,"y":15},"dir":0},"_x":0,"_y":15}},{"rid":1525,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":1,"y":8},"dir":0},"_x":1,"_y":8}},{"rid":1526,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":1,"y":9},"dir":0},"_x":1,"_y":9}},{"rid":1527,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":1,"y":10},"dir":0},"_x":1,"_y":10}},{"rid":1528,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":1,"y":11},"dir":0},"_x":1,"_y":11}},{"rid":1529,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":1,"y":12},"dir":0},"_x":1,"_y":12}},{"rid":1530,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":1,"y":13},"dir":0},"_x":1,"_y":13}},{"rid":1531,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":1,"y":14},"dir":0},"_x":1,"_y":14}},{"rid":1532,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":1,"y":15},"dir":0},"_x":1,"_y":15}},{"rid":1533,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":2,"y":8},"dir":0},"_x":2,"_y":8}},{"rid":1534,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":2,"y":9},"dir":0},"_x":2,"_y":9}},{"rid":1535,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":2,"y":10},"dir":0},"_x":2,"_y":10}},{"rid":1536,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":2,"y":11},"dir":0},"_x":2,"_y":11}},{"rid":1537,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":2,"y":12},"dir":0},"_x":2,"_y":12}},{"rid":1538,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":2,"y":13},"dir":0},"_x":2,"_y":13}},{"rid":1539,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":2,"y":14},"dir":0},"_x":2,"_y":14}},{"rid":1540,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":2,"y":15},"dir":0},"_x":2,"_y":15}},{"rid":1541,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":3,"y":8},"dir":0},"_x":3,"_y":8}},{"rid":1542,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":3,"y":9},"dir":0},"_x":3,"_y":9}},{"rid":1543,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":3,"y":10},"dir":0},"_x":3,"_y":10}},{"rid":1544,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":3,"y":11},"dir":0},"_x":3,"_y":11}},{"rid":1545,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":3,"y":12},"dir":0},"_x":3,"_y":12}},{"rid":1546,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":3,"y":13},"dir":0},"_x":3,"_y":13}},{"rid":1547,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":3,"y":14},"dir":0},"_x":3,"_y":14}},{"rid":1548,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":3,"y":15},"dir":0},"_x":3,"_y":15}},{"rid":1549,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":4,"y":8},"dir":0},"_x":4,"_y":8}},{"rid":1550,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":4,"y":9},"dir":0},"_x":4,"_y":9}},{"rid":1551,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":4,"y":10},"dir":0},"_x":4,"_y":10}},{"rid":1552,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":4,"y":11},"dir":0},"_x":4,"_y":11}},{"rid":1553,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"AirlockCivilian","origin":{"x":4,"y":12},"dir":2},"_x":4,"_y":12}},{"rid":1554,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":4,"y":13},"dir":0},"_x":4,"_y":13}},{"rid":1555,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":4,"y":14},"dir":0},"_x":4,"_y":14}},{"rid":1556,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":4,"y":15},"dir":0},"_x":4,"_y":15}},{"rid":1557,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":5,"y":8},"dir":0},"_x":5,"_y":8}},{"rid":1558,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":5,"y":9},"dir":0},"_x":5,"_y":9}},{"rid":1559,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":5,"y":10},"dir":0},"_x":5,"_y":10}},{"rid":1560,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":5,"y":11},"dir":0},"_x":5,"_y":11}},{"rid":1561,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":5,"y":12},"dir":0},"_x":5,"_y":12}},{"rid":1562,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":5,"y":13},"dir":0},"_x":5,"_y":13}},{"rid":1563,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":5,"y":14},"dir":2},"_x":5,"_y":14}},{"rid":1564,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":5,"y":15},"dir":2},"_x":5,"_y":15}},{"rid":1565,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":6,"y":8},"dir":0},"_x":6,"_y":8}},{"rid":1566,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":6,"y":9},"dir":2},"_x":6,"_y":9}},{"rid":1567,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":6,"y":10},"dir":0},"_x":6,"_y":10}},{"rid":1568,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":6,"y":11},"dir":0},"_x":6,"_y":11}},{"rid":1569,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":6,"y":12},"dir":0},"_x":6,"_y":12}},{"rid":1570,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":6,"y":13},"dir":0},"_x":6,"_y":13}},{"rid":1571,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":6,"y":14},"dir":2},"_x":6,"_y":14}},{"rid":1572,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":6,"y":15},"dir":2},"_x":6,"_y":15}},{"rid":1573,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":7,"y":8},"dir":0},"_x":7,"_y":8}},{"rid":1574,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":7,"y":9},"dir":2},"_x":7,"_y":9}},{"rid":1575,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":7,"y":10},"dir":0},"_x":7,"_y":10}},{"rid":1576,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":7,"y":11},"dir":0},"_x":7,"_y":11}},{"rid":1577,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":7,"y":12},"dir":0},"_x":7,"_y":12}},{"rid":1578,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":7,"y":13},"dir":0},"_x":7,"_y":13}},{"rid":1579,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":7,"y":14},"dir":2},"_x":7,"_y":14}},{"rid":1580,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":7,"y":15},"dir":2},"_x":7,"_y":15}},{"rid":1581,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":8,"y":8},"dir":0},"_x":8,"_y":8}},{"rid":1582,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":8,"y":9},"dir":0},"_x":8,"_y":9}},{"rid":1583,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":8,"y":10},"dir":0},"_x":8,"_y":10}},{"rid":1584,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":8,"y":11},"dir":0},"_x":8,"_y":11}},{"rid":1585,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"AirlockCivilian","origin":{"x":8,"y":12},"dir":2},"_x":8,"_y":12}},{"rid":1586,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":8,"y":13},"dir":0},"_x":8,"_y":13}},{"rid":1587,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":8,"y":14},"dir":0},"_x":8,"_y":14}},{"rid":1588,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":8,"y":15},"dir":0},"_x":8,"_y":15}},{"rid":1589,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":9,"y":8},"dir":0},"_x":9,"_y":8}},{"rid":1590,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":9,"y":9},"dir":0},"_x":9,"_y":9}},{"rid":1591,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":9,"y":10},"dir":0},"_x":9,"_y":10}},{"rid":1592,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":9,"y":11},"dir":0},"_x":9,"_y":11}},{"rid":1593,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":9,"y":12},"dir":0},"_x":9,"_y":12}},{"rid":1594,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":9,"y":13},"dir":0},"_x":9,"_y":13}},{"rid":1595,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":9,"y":14},"dir":0},"_x":9,"_y":14}},{"rid":1596,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":9,"y":15},"dir":2},"_x":9,"_y":15}},{"rid":1597,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":10,"y":8},"dir":0},"_x":10,"_y":8}},{"rid":1598,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":10,"y":9},"dir":0},"_x":10,"_y":9}},{"rid":1599,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":10,"y":10},"dir":0},"_x":10,"_y":10}},{"rid":1600,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":10,"y":11},"dir":0},"_x":10,"_y":11}},{"rid":1601,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":10,"y":12},"dir":0},"_x":10,"_y":12}},{"rid":1602,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":10,"y":13},"dir":0},"_x":10,"_y":13}},{"rid":1603,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":10,"y":14},"dir":0},"_x":10,"_y":14}},{"rid":1604,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":10,"y":15},"dir":0},"_x":10,"_y":15}},{"rid":1605,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":11,"y":8},"dir":0},"_x":11,"_y":8}},{"rid":1606,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":11,"y":9},"dir":0},"_x":11,"_y":9}},{"rid":1607,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":11,"y":10},"dir":0},"_x":11,"_y":10}},{"rid":1608,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":11,"y":11},"dir":0},"_x":11,"_y":11}},{"rid":1609,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":11,"y":12},"dir":0},"_x":11,"_y":12}},{"rid":1610,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":11,"y":13},"dir":0},"_x":11,"_y":13}},{"rid":1611,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":11,"y":14},"dir":0},"_x":11,"_y":14}},{"rid":1612,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":11,"y":15},"dir":0},"_x":11,"_y":15}},{"rid":1613,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":12,"y":8},"dir":0},"_x":12,"_y":8}},{"rid":1614,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":12,"y":9},"dir":0},"_x":12,"_y":9}},{"rid":1615,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":12,"y":10},"dir":0},"_x":12,"_y":10}},{"rid":1616,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":12,"y":11},"dir":0},"_x":12,"_y":11}},{"rid":1617,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":12,"y":12},"dir":0},"_x":12,"_y":12}},{"rid":1618,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":12,"y":13},"dir":0},"_x":12,"_y":13}},{"rid":1619,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":12,"y":14},"dir":0},"_x":12,"_y":14}},{"rid":1620,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":12,"y":15},"dir":0},"_x":12,"_y":15}},{"rid":1621,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":13,"y":8},"dir":0},"_x":13,"_y":8}},{"rid":1622,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":13,"y":9},"dir":0},"_x":13,"_y":9}},{"rid":1623,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":13,"y":10},"dir":0},"_x":13,"_y":10}},{"rid":1624,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":13,"y":11},"dir":0},"_x":13,"_y":11}},{"rid":1625,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":13,"y":12},"dir":0},"_x":13,"_y":12}},{"rid":1626,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":13,"y":13},"dir":0},"_x":13,"_y":13}},{"rid":1627,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":13,"y":14},"dir":0},"_x":13,"_y":14}},{"rid":1628,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"AirlockCivilian","origin":{"x":13,"y":15},"dir":0},"_x":13,"_y":15}},{"rid":1629,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":14,"y":8},"dir":0},"_x":14,"_y":8}},{"rid":1630,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":14,"y":9},"dir":0},"_x":14,"_y":9}},{"rid":1631,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":14,"y":10},"dir":0},"_x":14,"_y":10}},{"rid":1632,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":14,"y":11},"dir":0},"_x":14,"_y":11}},{"rid":1633,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":14,"y":12},"dir":0},"_x":14,"_y":12}},{"rid":1634,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":14,"y":13},"dir":0},"_x":14,"_y":13}},{"rid":1635,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":14,"y":14},"dir":0},"_x":14,"_y":14}},{"rid":1636,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":14,"y":15},"dir":0},"_x":14,"_y":15}},{"rid":1637,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":15,"y":8},"dir":0},"_x":15,"_y":8}},{"rid":1638,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":15,"y":9},"dir":0},"_x":15,"_y":9}},{"rid":1639,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":15,"y":10},"dir":0},"_x":15,"_y":10}},{"rid":1640,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":15,"y":11},"dir":0},"_x":15,"_y":11}},{"rid":1641,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":15,"y":12},"dir":0},"_x":15,"_y":12}},{"rid":1642,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":15,"y":13},"dir":0},"_x":15,"_y":13}},{"rid":1643,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileKitchen","origin":{"x":15,"y":14},"dir":0},"_x":15,"_y":14}},{"rid":1644,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":15,"y":15},"dir":0},"_x":15,"_y":15}},{"rid":1645,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightTubeFixture","origin":{"x":0,"y":8},"dir":0}],"x":0,"y":8}},{"rid":1646,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightTubeFixture","origin":{"x":0,"y":15},"dir":4}],"x":0,"y":15}},{"rid":1647,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightTubeFixture","origin":{"x":1,"y":15},"dir":0}],"x":1,"y":15}},{"rid":1648,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightTubeFixture","origin":{"x":4,"y":14},"dir":2}],"x":4,"y":14}},{"rid":1649,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightTubeFixture","origin":{"x":8,"y":9},"dir":6}],"x":8,"y":9}},{"rid":1650,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightTubeFixture","origin":{"x":11,"y":15},"dir":0}],"x":11,"y":15}},{"rid":1651,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightTubeFixture","origin":{"x":12,"y":8},"dir":0}],"x":12,"y":8}},{"rid":1652,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightTubeFixture","origin":{"x":12,"y":15},"dir":4}],"x":12,"y":15}},{"rid":1653,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"APC","origin":{"x":1,"y":8},"dir":0}],"x":1,"y":8}},{"rid":1654,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"AirAlarm","origin":{"x":1,"y":15},"dir":4}],"x":1,"y":15}},{"rid":1655,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"AirAlarm","origin":{"x":3,"y":15},"dir":0},{"tileObjectSOName":"PosterHorizontal","origin":{"x":3,"y":15},"dir":4}],"x":3,"y":15}},{"rid":1656,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightSwitch","origin":{"x":4,"y":10},"dir":6}],"x":4,"y":10}},{"rid":1657,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"FireAlarm","origin":{"x":9,"y":15},"dir":0}],"x":9,"y":15}},{"rid":1658,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"AirAlarm","origin":{"x":11,"y":8},"dir":0}],"x":11,"y":8}},{"rid":1659,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightSwitch","origin":{"x":11,"y":15},"dir":4}],"x":11,"y":15}},{"rid":1660,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"APC","origin":{"x":14,"y":8},"dir":0}],"x":14,"y":8}},{"rid":1661,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Locker","origin":{"x":0,"y":9},"dir":0},"_x":0,"_y":9}},{"rid":1662,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DisposalBin","origin":{"x":0,"y":14},"dir":4},"_x":0,"_y":14}},{"rid":1663,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Scrubber","origin":{"x":1,"y":13},"dir":0},"_x":1,"_y":13}},{"rid":1664,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableWood","origin":{"x":1,"y":14},"dir":0},"_x":1,"_y":14}},{"rid":1665,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plant7","origin":{"x":2,"y":9},"dir":6},"_x":2,"_y":9}},{"rid":1666,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableWood","origin":{"x":2,"y":14},"dir":0},"_x":2,"_y":14}},{"rid":1667,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"VendorYouTool","origin":{"x":3,"y":9},"dir":0},"_x":3,"_y":9}},{"rid":1668,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableWood","origin":{"x":3,"y":14},"dir":0},"_x":3,"_y":14}},{"rid":1669,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DinnerBooth","origin":{"x":9,"y":9},"dir":1},"_x":9,"_y":9}},{"rid":1670,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DinnerBooth","origin":{"x":9,"y":10},"dir":2},"_x":9,"_y":10}},{"rid":1671,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DinnerBooth","origin":{"x":9,"y":11},"dir":3},"_x":9,"_y":11}},{"rid":1672,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DinnerBooth","origin":{"x":9,"y":13},"dir":2},"_x":9,"_y":13}},{"rid":1673,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DinnerBooth","origin":{"x":9,"y":14},"dir":3},"_x":9,"_y":14}},{"rid":1674,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DinnerBooth","origin":{"x":10,"y":9},"dir":0},"_x":10,"_y":9}},{"rid":1675,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DinnerBooth","origin":{"x":10,"y":11},"dir":4},"_x":10,"_y":11}},{"rid":1676,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DinnerBooth","origin":{"x":10,"y":14},"dir":4},"_x":10,"_y":14}},{"rid":1677,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Vent","origin":{"x":11,"y":12},"dir":0},"_x":11,"_y":12}},{"rid":1678,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableGlass","origin":{"x":12,"y":9},"dir":0},"_x":12,"_y":9}},{"rid":1679,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableGlass","origin":{"x":12,"y":10},"dir":0},"_x":12,"_y":10}},{"rid":1680,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableGlass","origin":{"x":12,"y":11},"dir":0},"_x":12,"_y":11}},{"rid":1681,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableGlass","origin":{"x":12,"y":12},"dir":0},"_x":12,"_y":12}},{"rid":1682,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableGlass","origin":{"x":12,"y":13},"dir":0},"_x":12,"_y":13}},{"rid":1683,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"DisposalBin","origin":{"x":13,"y":9},"dir":0},"_x":13,"_y":9}},{"rid":1684,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Scrubber","origin":{"x":13,"y":10},"dir":0},"_x":13,"_y":10}},{"rid":1685,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Microwave","origin":{"x":15,"y":9},"dir":6},"_x":15,"_y":9}},{"rid":1686,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableSteel","origin":{"x":15,"y":10},"dir":4},"_x":15,"_y":10}},{"rid":1687,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableSteel","origin":{"x":15,"y":11},"dir":4},"_x":15,"_y":11}},{"rid":1688,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"VendorRobustSoftdrinks","origin":{"x":15,"y":12},"dir":6},"_x":15,"_y":12}},{"rid":1689,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableSteel","origin":{"x":15,"y":13},"dir":4},"_x":15,"_y":13}},{"rid":1690,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableSteel","origin":{"x":15,"y":14},"dir":4},"_x":15,"_y":14}},{"rid":1691,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":15},"dir":0},"_x":9,"_y":15}},{"rid":1692,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":15},"dir":0},"_x":10,"_y":15}},{"rid":1693,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":15},"dir":0},"_x":11,"_y":15}},{"rid":1694,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":8},"dir":0},"_x":12,"_y":8}},{"rid":1695,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":9},"dir":0},"_x":12,"_y":9}},{"rid":1696,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":10},"dir":0},"_x":12,"_y":10}},{"rid":1697,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":11},"dir":0},"_x":12,"_y":11}},{"rid":1698,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":12},"dir":0},"_x":12,"_y":12}},{"rid":1699,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":13},"dir":0},"_x":12,"_y":13}},{"rid":1700,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":14},"dir":0},"_x":12,"_y":14}},{"rid":1701,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":15},"dir":0},"_x":12,"_y":15}},{"rid":1702,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":8},"dir":0},"_x":13,"_y":8}},{"rid":1703,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":9},"dir":0},"_x":13,"_y":9}},{"rid":1704,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":10},"dir":0},"_x":13,"_y":10}},{"rid":1705,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":11},"dir":0},"_x":13,"_y":11}},{"rid":1706,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":12},"dir":0},"_x":13,"_y":12}},{"rid":1707,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":13},"dir":0},"_x":13,"_y":13}},{"rid":1708,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":14},"dir":0},"_x":13,"_y":14}},{"rid":1709,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":15},"dir":0},"_x":13,"_y":15}},{"rid":1710,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":8},"dir":0},"_x":14,"_y":8}},{"rid":1711,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":9},"dir":0},"_x":14,"_y":9}},{"rid":1712,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":10},"dir":0},"_x":14,"_y":10}},{"rid":1713,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":11},"dir":0},"_x":14,"_y":11}},{"rid":1714,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":12},"dir":0},"_x":14,"_y":12}},{"rid":1715,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":13},"dir":0},"_x":14,"_y":13}},{"rid":1716,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":14},"dir":0},"_x":14,"_y":14}},{"rid":1717,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":15},"dir":0},"_x":14,"_y":15}},{"rid":1718,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":8},"dir":0},"_x":15,"_y":8}},{"rid":1719,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":9},"dir":0},"_x":15,"_y":9}},{"rid":1720,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":10},"dir":0},"_x":15,"_y":10}},{"rid":1721,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":11},"dir":0},"_x":15,"_y":11}},{"rid":1722,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":12},"dir":0},"_x":15,"_y":12}},{"rid":1723,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":13},"dir":0},"_x":15,"_y":13}},{"rid":1724,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":14},"dir":0},"_x":15,"_y":14}},{"rid":1725,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":15},"dir":0},"_x":15,"_y":15}},{"rid":1726,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":12,"y":8},"dir":0},"_x":12,"_y":8}},{"rid":1727,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":12,"y":9},"dir":0},"_x":12,"_y":9}},{"rid":1728,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":12,"y":10},"dir":0},"_x":12,"_y":10}},{"rid":1729,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":12,"y":11},"dir":0},"_x":12,"_y":11}},{"rid":1730,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":12,"y":12},"dir":0},"_x":12,"_y":12}},{"rid":1731,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":12,"y":13},"dir":0},"_x":12,"_y":13}},{"rid":1732,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":12,"y":14},"dir":0},"_x":12,"_y":14}},{"rid":1733,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":12,"y":15},"dir":0},"_x":12,"_y":15}},{"rid":1734,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":13,"y":8},"dir":0},"_x":13,"_y":8}},{"rid":1735,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":13,"y":9},"dir":0},"_x":13,"_y":9}},{"rid":1736,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":13,"y":10},"dir":0},"_x":13,"_y":10}},{"rid":1737,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":13,"y":11},"dir":0},"_x":13,"_y":11}},{"rid":1738,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":13,"y":12},"dir":0},"_x":13,"_y":12}},{"rid":1739,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":13,"y":13},"dir":0},"_x":13,"_y":13}},{"rid":1740,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":13,"y":14},"dir":0},"_x":13,"_y":14}},{"rid":1741,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":13,"y":15},"dir":0},"_x":13,"_y":15}},{"rid":1742,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":14,"y":8},"dir":0},"_x":14,"_y":8}},{"rid":1743,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":14,"y":9},"dir":0},"_x":14,"_y":9}},{"rid":1744,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":14,"y":10},"dir":0},"_x":14,"_y":10}},{"rid":1745,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":14,"y":11},"dir":0},"_x":14,"_y":11}},{"rid":1746,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":14,"y":12},"dir":0},"_x":14,"_y":12}},{"rid":1747,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":14,"y":13},"dir":0},"_x":14,"_y":13}},{"rid":1748,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":14,"y":14},"dir":0},"_x":14,"_y":14}},{"rid":1749,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":14,"y":15},"dir":0},"_x":14,"_y":15}},{"rid":1750,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":15,"y":8},"dir":0},"_x":15,"_y":8}},{"rid":1751,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":15,"y":9},"dir":0},"_x":15,"_y":9}},{"rid":1752,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":15,"y":10},"dir":0},"_x":15,"_y":10}},{"rid":1753,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":15,"y":11},"dir":0},"_x":15,"_y":11}},{"rid":1754,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":15,"y":12},"dir":0},"_x":15,"_y":12}},{"rid":1755,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":15,"y":13},"dir":0},"_x":15,"_y":13}},{"rid":1756,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TileWood","origin":{"x":15,"y":14},"dir":0},"_x":15,"_y":14}},{"rid":1757,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"AirlockCivilian","origin":{"x":15,"y":15},"dir":0},"_x":15,"_y":15}},{"rid":1758,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"Mirror","origin":{"x":12,"y":10},"dir":2}],"x":12,"y":10}},{"rid":1759,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"Mirror","origin":{"x":12,"y":11},"dir":2}],"x":12,"y":11}},{"rid":1760,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"Mirror","origin":{"x":12,"y":12},"dir":2}],"x":12,"y":12}},{"rid":1761,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"FireAlarm","origin":{"x":13,"y":15},"dir":4}],"x":13,"y":15}},{"rid":1762,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SecurityLocker","origin":{"x":13,"y":9},"dir":0},"_x":13,"_y":9}},{"rid":1763,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"PlasticChair","origin":{"x":13,"y":13},"dir":0},"_x":13,"_y":13}},{"rid":1764,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TableWood","origin":{"x":13,"y":14},"dir":4},"_x":13,"_y":14}},{"rid":1765,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SecureLocker","origin":{"x":14,"y":9},"dir":0},"_x":14,"_y":9}},{"rid":1766,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"PlasticChair","origin":{"x":14,"y":14},"dir":6},"_x":14,"_y":14}},{"rid":1767,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Locker","origin":{"x":15,"y":9},"dir":0},"_x":15,"_y":9}},{"rid":1768,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Vent","origin":{"x":15,"y":10},"dir":0},"_x":15,"_y":10}},{"rid":1769,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":0},"dir":0},"_x":9,"_y":0}},{"rid":1770,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":1},"dir":0},"_x":9,"_y":1}},{"rid":1771,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":2},"dir":0},"_x":9,"_y":2}},{"rid":1772,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":3},"dir":0},"_x":9,"_y":3}},{"rid":1773,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":4},"dir":4},"_x":9,"_y":4}},{"rid":1774,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":9,"y":5},"dir":4},"_x":9,"_y":5}},{"rid":1775,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":0},"dir":0},"_x":10,"_y":0}},{"rid":1776,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":1},"dir":0},"_x":10,"_y":1}},{"rid":1777,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":2},"dir":0},"_x":10,"_y":2}},{"rid":1778,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":3},"dir":0},"_x":10,"_y":3}},{"rid":1779,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":4},"dir":4},"_x":10,"_y":4}},{"rid":1780,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":10,"y":5},"dir":4},"_x":10,"_y":5}},{"rid":1781,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":0},"dir":0},"_x":11,"_y":0}},{"rid":1782,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":1},"dir":0},"_x":11,"_y":1}},{"rid":1783,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":2},"dir":0},"_x":11,"_y":2}},{"rid":1784,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":3},"dir":0},"_x":11,"_y":3}},{"rid":1785,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":4},"dir":4},"_x":11,"_y":4}},{"rid":1786,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":5},"dir":4},"_x":11,"_y":5}},{"rid":1787,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":6},"dir":4},"_x":11,"_y":6}},{"rid":1788,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":11,"y":7},"dir":4},"_x":11,"_y":7}},{"rid":1789,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":0},"dir":0},"_x":12,"_y":0}},{"rid":1790,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":1},"dir":0},"_x":12,"_y":1}},{"rid":1791,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":2},"dir":0},"_x":12,"_y":2}},{"rid":1792,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":3},"dir":0},"_x":12,"_y":3}},{"rid":1793,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":4},"dir":4},"_x":12,"_y":4}},{"rid":1794,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":5},"dir":4},"_x":12,"_y":5}},{"rid":1795,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":6},"dir":4},"_x":12,"_y":6}},{"rid":1796,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":12,"y":7},"dir":4},"_x":12,"_y":7}},{"rid":1797,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":0},"dir":0},"_x":13,"_y":0}},{"rid":1798,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":1},"dir":0},"_x":13,"_y":1}},{"rid":1799,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":2},"dir":0},"_x":13,"_y":2}},{"rid":1800,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":3},"dir":0},"_x":13,"_y":3}},{"rid":1801,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":4},"dir":4},"_x":13,"_y":4}},{"rid":1802,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":5},"dir":4},"_x":13,"_y":5}},{"rid":1803,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":6},"dir":4},"_x":13,"_y":6}},{"rid":1804,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":13,"y":7},"dir":4},"_x":13,"_y":7}},{"rid":1805,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":0},"dir":0},"_x":14,"_y":0}},{"rid":1806,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":1},"dir":0},"_x":14,"_y":1}},{"rid":1807,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":2},"dir":0},"_x":14,"_y":2}},{"rid":1808,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":3},"dir":0},"_x":14,"_y":3}},{"rid":1809,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":4},"dir":4},"_x":14,"_y":4}},{"rid":1810,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":5},"dir":4},"_x":14,"_y":5}},{"rid":1811,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":6},"dir":4},"_x":14,"_y":6}},{"rid":1812,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":7},"dir":4},"_x":14,"_y":7}},{"rid":1813,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":8},"dir":4},"_x":14,"_y":8}},{"rid":1814,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":14,"y":9},"dir":4},"_x":14,"_y":9}},{"rid":1815,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":0},"dir":0},"_x":15,"_y":0}},{"rid":1816,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":1},"dir":0},"_x":15,"_y":1}},{"rid":1817,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":2},"dir":0},"_x":15,"_y":2}},{"rid":1818,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":3},"dir":0},"_x":15,"_y":3}},{"rid":1819,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":4},"dir":4},"_x":15,"_y":4}},{"rid":1820,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":5},"dir":4},"_x":15,"_y":5}},{"rid":1821,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":6},"dir":4},"_x":15,"_y":6}},{"rid":1822,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":7},"dir":4},"_x":15,"_y":7}},{"rid":1823,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":8},"dir":4},"_x":15,"_y":8}},{"rid":1824,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":9},"dir":4},"_x":15,"_y":9}},{"rid":1825,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":15,"y":10},"dir":4},"_x":15,"_y":10}},{"rid":1826,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":12,"y":0},"dir":0},"_x":12,"_y":0}},{"rid":1827,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":12,"y":1},"dir":0},"_x":12,"_y":1}},{"rid":1828,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":12,"y":2},"dir":0},"_x":12,"_y":2}},{"rid":1829,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":12,"y":3},"dir":0},"_x":12,"_y":3}},{"rid":1830,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":13,"y":0},"dir":0},"_x":13,"_y":0}},{"rid":1831,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":13,"y":1},"dir":0},"_x":13,"_y":1}},{"rid":1832,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":13,"y":2},"dir":0},"_x":13,"_y":2}},{"rid":1833,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":13,"y":3},"dir":0},"_x":13,"_y":3}},{"rid":1834,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":14,"y":0},"dir":0},"_x":14,"_y":0}},{"rid":1835,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":14,"y":1},"dir":0},"_x":14,"_y":1}},{"rid":1836,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":14,"y":2},"dir":0},"_x":14,"_y":2}},{"rid":1837,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":14,"y":3},"dir":0},"_x":14,"_y":3}},{"rid":1838,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":15,"y":0},"dir":0},"_x":15,"_y":0}},{"rid":1839,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":15,"y":1},"dir":0},"_x":15,"_y":1}},{"rid":1840,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":15,"y":2},"dir":0},"_x":15,"_y":2}},{"rid":1841,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":15,"y":3},"dir":0},"_x":15,"_y":3}},{"rid":1842,"type":{"class":"SavedTileCardinalLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObjects":[{"tileObjectSOName":"LightTubeFixture","origin":{"x":13,"y":3},"dir":4}],"x":13,"y":3}},{"rid":1843,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":0},"dir":0},"_x":0,"_y":0}},{"rid":1844,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":1},"dir":0},"_x":0,"_y":1}},{"rid":1845,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":2},"dir":0},"_x":0,"_y":2}},{"rid":1846,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":3},"dir":0},"_x":0,"_y":3}},{"rid":1847,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":4},"dir":6},"_x":0,"_y":4}},{"rid":1848,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":5},"dir":6},"_x":0,"_y":5}},{"rid":1849,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":0},"dir":6},"_x":1,"_y":0}},{"rid":1850,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":1},"dir":6},"_x":1,"_y":1}},{"rid":1851,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":2},"dir":6},"_x":1,"_y":2}},{"rid":1852,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":3},"dir":6},"_x":1,"_y":3}},{"rid":1853,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":4},"dir":6},"_x":1,"_y":4}},{"rid":1854,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":1,"y":5},"dir":6},"_x":1,"_y":5}},{"rid":1855,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":0,"y":0},"dir":0},"_x":0,"_y":0}},{"rid":1856,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":0,"y":1},"dir":0},"_x":0,"_y":1}},{"rid":1857,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"TIleGrey","origin":{"x":0,"y":2},"dir":0},"_x":0,"_y":2}},{"rid":1858,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":0,"y":3},"dir":0},"_x":0,"_y":3}},{"rid":1859,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":8},"dir":0},"_x":0,"_y":8}},{"rid":1860,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":9},"dir":0},"_x":0,"_y":9}},{"rid":1861,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":10},"dir":0},"_x":0,"_y":10}},{"rid":1862,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":11},"dir":0},"_x":0,"_y":11}},{"rid":1863,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":12},"dir":0},"_x":0,"_y":12}},{"rid":1864,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":13},"dir":0},"_x":0,"_y":13}},{"rid":1865,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":14},"dir":0},"_x":0,"_y":14}},{"rid":1866,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"Plenum","origin":{"x":0,"y":15},"dir":0},"_x":0,"_y":15}},{"rid":1867,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":0,"y":8},"dir":0},"_x":0,"_y":8}},{"rid":1868,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":0,"y":9},"dir":0},"_x":0,"_y":9}},{"rid":1869,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":0,"y":10},"dir":0},"_x":0,"_y":10}},{"rid":1870,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":0,"y":11},"dir":0},"_x":0,"_y":11}},{"rid":1871,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":0,"y":12},"dir":0},"_x":0,"_y":12}},{"rid":1872,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":0,"y":13},"dir":0},"_x":0,"_y":13}},{"rid":1873,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":0,"y":14},"dir":0},"_x":0,"_y":14}},{"rid":1874,"type":{"class":"SavedTileSingleLocation","ns":"SS3D.Systems.Tile","asm":"SS3D.Systems"},"data":{"_placedSaveObject":{"tileObjectSOName":"SteelWall","origin":{"x":0,"y":15},"dir":0},"_x":0,"_y":15}}]}} \ No newline at end of file diff --git a/ProjectSettings/GraphicsSettings.asset b/ProjectSettings/GraphicsSettings.asset index 43369e3c51..acbd3e2b42 100644 --- a/ProjectSettings/GraphicsSettings.asset +++ b/ProjectSettings/GraphicsSettings.asset @@ -3,10 +3,10 @@ --- !u!30 &1 GraphicsSettings: m_ObjectHideFlags: 0 - serializedVersion: 13 + serializedVersion: 14 m_Deferred: - m_Mode: 1 - m_Shader: {fileID: 69, guid: 0000000000000000f000000000000000, type: 0} + m_Mode: 2 + m_Shader: {fileID: 4800000, guid: 7b7ce4bceabab4b49b6740ff8d8feabe, type: 3} m_DeferredReflections: m_Mode: 1 m_Shader: {fileID: 74, guid: 0000000000000000f000000000000000, type: 0} @@ -28,6 +28,7 @@ GraphicsSettings: m_LensFlare: m_Mode: 1 m_Shader: {fileID: 102, guid: 0000000000000000f000000000000000, type: 0} + m_VideoShadersIncludeMode: 2 m_AlwaysIncludedShaders: - {fileID: 7, guid: 0000000000000000f000000000000000, type: 0} - {fileID: 15104, guid: 0000000000000000f000000000000000, type: 0} @@ -36,14 +37,65 @@ GraphicsSettings: - {fileID: 10753, guid: 0000000000000000f000000000000000, type: 0} - {fileID: 10770, guid: 0000000000000000f000000000000000, type: 0} m_PreloadedShaders: [] - m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, - type: 0} + m_PreloadShadersBatchTimeLimit: -1 + m_SpritesDefaultMaterial: {fileID: 10754, guid: 0000000000000000f000000000000000, type: 0} m_CustomRenderPipeline: {fileID: 0} m_TransparencySortMode: 0 m_TransparencySortAxis: {x: 0, y: 0, z: 1} m_DefaultRenderingPath: 1 m_DefaultMobileRenderingPath: 1 - m_TierSettings: [] + m_TierSettings: + - serializedVersion: 5 + m_BuildTarget: 1 + m_Tier: 1 + m_Settings: + standardShaderQuality: 2 + renderingPath: 3 + hdrMode: 1 + realtimeGICPUUsage: 25 + useReflectionProbeBoxProjection: 1 + useReflectionProbeBlending: 1 + useHDR: 1 + useDetailNormalMap: 1 + useCascadedShadowMaps: 1 + prefer32BitShadowMaps: 0 + enableLPPV: 1 + useDitherMaskForAlphaBlendedShadows: 1 + m_Automatic: 0 + - serializedVersion: 5 + m_BuildTarget: 1 + m_Tier: 2 + m_Settings: + standardShaderQuality: 2 + renderingPath: 3 + hdrMode: 1 + realtimeGICPUUsage: 50 + useReflectionProbeBoxProjection: 1 + useReflectionProbeBlending: 1 + useHDR: 1 + useDetailNormalMap: 1 + useCascadedShadowMaps: 1 + prefer32BitShadowMaps: 0 + enableLPPV: 1 + useDitherMaskForAlphaBlendedShadows: 1 + m_Automatic: 0 + - serializedVersion: 5 + m_BuildTarget: 1 + m_Tier: 0 + m_Settings: + standardShaderQuality: 2 + renderingPath: 3 + hdrMode: 1 + realtimeGICPUUsage: 25 + useReflectionProbeBoxProjection: 1 + useReflectionProbeBlending: 1 + useHDR: 1 + useDetailNormalMap: 1 + useCascadedShadowMaps: 1 + prefer32BitShadowMaps: 0 + enableLPPV: 1 + useDitherMaskForAlphaBlendedShadows: 1 + m_Automatic: 0 m_LightmapStripping: 0 m_FogStripping: 0 m_InstancingStripping: 0 @@ -59,5 +111,6 @@ GraphicsSettings: m_AlbedoSwatchInfos: [] m_LightsUseLinearIntensity: 0 m_LightsUseColorTemperature: 0 + m_DefaultRenderingLayerMask: 1 m_LogWhenShaderIsCompiled: 0 - m_AllowEnlightenSupportForUpgradedProject: 0 + m_SRPDefaultSettings: {}