diff --git a/Content.Shared/Maps/ContentTileDefinition.cs b/Content.Shared/Maps/ContentTileDefinition.cs index d0101aa152..eab373a463 100644 --- a/Content.Shared/Maps/ContentTileDefinition.cs +++ b/Content.Shared/Maps/ContentTileDefinition.cs @@ -1,4 +1,5 @@ using Content.Shared.Atmos; +using Content.Shared.Movement.Systems; using Robust.Shared.Audio; using Robust.Shared.Map; using Robust.Shared.Prototypes; @@ -30,6 +31,8 @@ namespace Content.Shared.Maps [DataField("edgeSprites")] public Dictionary EdgeSprites { get; private set; } = new(); + [DataField("edgeSpritePriority")] public int EdgeSpritePriority { get; private set; } = 0; + [DataField("isSubfloor")] public bool IsSubFloor { get; private set; } [DataField("baseTurf")] @@ -72,6 +75,25 @@ namespace Content.Shared.Maps public string ItemDropPrototypeName { get; private set; } = "FloorTileItemSteel"; [DataField("isSpace")] public bool IsSpace { get; private set; } + + /// + /// Friction override for mob mover in + /// + [DataField("mobFriction")] + public float? MobFriction { get; private set; } + + /// + /// No-input friction override for mob mover in + /// + [DataField("mobFrictionNoInput")] + public float? MobFrictionNoInput { get; private set; } + + /// + /// Accel override for mob mover in + /// + [DataField("mobAcceleration")] + public float? MobAcceleration { get; private set; } + [DataField("sturdy")] public bool Sturdy { get; private set; } = true; /// diff --git a/Content.Shared/Movement/Systems/SharedMoverController.cs b/Content.Shared/Movement/Systems/SharedMoverController.cs index 4082c3212b..725cc274c0 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.cs @@ -39,6 +39,7 @@ namespace Content.Shared.Movement.Systems [Dependency] private readonly MobStateSystem _mobState = default!; [Dependency] private readonly SharedAudioSystem _audio = default!; [Dependency] private readonly SharedContainerSystem _container = default!; + [Dependency] private readonly SharedMapSystem _mapSystem = default!; [Dependency] private readonly SharedGravitySystem _gravity = default!; [Dependency] protected readonly SharedPhysicsSystem Physics = default!; [Dependency] private readonly SharedTransformSystem _transform = default!; @@ -156,8 +157,20 @@ namespace Content.Shared.Movement.Systems return; } + // Get current tile def for things like speed/weightless mods + ContentTileDefinition? tileDef = null; + + if (_mapManager.TryFindGridAt(xform.MapPosition, out var grid, out var gridComp) + && _mapSystem.TryGetTileRef(grid, gridComp, xform.Coordinates, out var tile)) + { + tileDef = (ContentTileDefinition) _tileDefinitionManager[tile.Tile.TypeId]; + } + UsedMobMovement[uid] = true; // Specifically don't use mover.Owner because that may be different to the actual physics body being moved. + + // We differentiate between grav/other sources of weightless for tiles which want to use weightless accel (like ice) + // but don't care about requiring touching etc var weightless = _gravity.IsWeightless(physicsUid, physicsComponent, xform); var (walkDir, sprintDir) = GetVelocityInput(mover); var touching = false; @@ -214,15 +227,15 @@ namespace Content.Shared.Movement.Systems { if (worldTotal != Vector2.Zero || moveSpeedComponent?.FrictionNoInput == null) { - friction = moveSpeedComponent?.Friction ?? MovementSpeedModifierComponent.DefaultFriction; + friction = tileDef?.MobFriction ?? moveSpeedComponent?.Friction ?? MovementSpeedModifierComponent.DefaultFriction; } else { - friction = moveSpeedComponent.FrictionNoInput ?? MovementSpeedModifierComponent.DefaultFrictionNoInput; + friction = tileDef?.MobFrictionNoInput ?? moveSpeedComponent.FrictionNoInput ?? MovementSpeedModifierComponent.DefaultFrictionNoInput; } weightlessModifier = 1f; - accel = moveSpeedComponent?.Acceleration ?? MovementSpeedModifierComponent.DefaultAcceleration; + accel = tileDef?.MobAcceleration ?? moveSpeedComponent?.Acceleration ?? MovementSpeedModifierComponent.DefaultAcceleration; } var minimumFrictionSpeed = moveSpeedComponent?.MinimumFrictionSpeed ?? MovementSpeedModifierComponent.DefaultMinimumFrictionSpeed; @@ -236,7 +249,7 @@ namespace Content.Shared.Movement.Systems // island solver"??. So maybe SetRotation needs an argument to avoid raising an event? if (!weightless && MobMoverQuery.TryGetComponent(uid, out var mobMover) && - TryGetSound(weightless, uid, mover, mobMover, xform, out var sound)) + TryGetSound(weightless, uid, mover, mobMover, xform, out var sound, tileDef: tileDef)) { var soundModifier = mover.Sprinting ? 3.5f : 1.5f; @@ -373,7 +386,14 @@ namespace Content.Shared.Movement.Systems protected abstract bool CanSound(); - private bool TryGetSound(bool weightless, EntityUid uid, InputMoverComponent mover, MobMoverComponent mobMover, TransformComponent xform, [NotNullWhen(true)] out SoundSpecifier? sound) + private bool TryGetSound( + bool weightless, + EntityUid uid, + InputMoverComponent mover, + MobMoverComponent mobMover, + TransformComponent xform, + [NotNullWhen(true)] out SoundSpecifier? sound, + ContentTileDefinition? tileDef = null) { sound = null; @@ -423,10 +443,15 @@ namespace Content.Shared.Movement.Systems return true; } - return TryGetFootstepSound(uid, xform, shoes != null, out sound); + return TryGetFootstepSound(uid, xform, shoes != null, out sound, tileDef: tileDef); } - private bool TryGetFootstepSound(EntityUid uid, TransformComponent xform, bool haveShoes, [NotNullWhen(true)] out SoundSpecifier? sound) + private bool TryGetFootstepSound( + EntityUid uid, + TransformComponent xform, + bool haveShoes, + [NotNullWhen(true)] out SoundSpecifier? sound, + ContentTileDefinition? tileDef = null) { sound = null; @@ -466,15 +491,18 @@ namespace Content.Shared.Movement.Systems } } - if (!grid.TryGetTileRef(position, out var tileRef)) + // Walking on a tile. + // Tile def might have been passed in already from previous methods, so use that + // if we have it + if (tileDef == null && grid.TryGetTileRef(position, out var tileRef)) { - sound = null; - return false; + tileDef = (ContentTileDefinition) _tileDefinitionManager[tileRef.Tile.TypeId]; } - // Walking on a tile. - var def = (ContentTileDefinition) _tileDefinitionManager[tileRef.Tile.TypeId]; - sound = haveShoes ? def.FootstepSounds : def.BarestepSounds; + if (tileDef == null) + return false; + + sound = haveShoes ? tileDef.FootstepSounds : tileDef.BarestepSounds; return sound != null; } } diff --git a/Resources/Locale/en-US/tiles/tiles.ftl b/Resources/Locale/en-US/tiles/tiles.ftl index d5eb54d5b9..219c7295d9 100644 --- a/Resources/Locale/en-US/tiles/tiles.ftl +++ b/Resources/Locale/en-US/tiles/tiles.ftl @@ -81,6 +81,8 @@ tiles-green-circuit-floor = green circuit floor tiles-blue-circuit-floor = blue circuit floor tiles-snow = snow tiles-snow-plating = snowed plating +tiles-snow-dug = dug snow +tiles-ice = ice tiles-grass-floor = grass floor tiles-asphalt = asphalt tiles-planet-grass-floor = grass floor diff --git a/Resources/Maps/nukieplanet.yml b/Resources/Maps/nukieplanet.yml index 305ab14ed6..3ce69a4dc7 100644 --- a/Resources/Maps/nukieplanet.yml +++ b/Resources/Maps/nukieplanet.yml @@ -1,24 +1,25 @@ meta: - format: 5 + format: 6 postmapinit: false tilemap: 0: Space 12: FloorBar 18: FloorCarpetClown - 23: FloorDark - 38: FloorFreezer - 59: FloorReinforced - 60: FloorRockVault - 61: FloorShowroom - 63: FloorShuttleOrange - 65: FloorShuttleRed - 68: FloorSnow - 69: FloorSteel - 79: FloorTechMaint - 82: FloorWhite - 92: FloorWood - 94: Lattice - 95: Plating + 26: FloorDark + 41: FloorFreezer + 56: FloorIce + 71: FloorReinforced + 73: FloorRockVault + 74: FloorShowroom + 76: FloorShuttleOrange + 78: FloorShuttleRed + 81: FloorSnow + 83: FloorSteel + 95: FloorTechMaint + 99: FloorWhite + 109: FloorWood + 111: Lattice + 112: Plating entities: - proto: "" entities: @@ -35,76 +36,100 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAFEAAAJXwAAABcAAANSAAADUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAA8AAAAPAAAADwAAABEAAAMRAAABV8AAAAXAAADUgAAA0UAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAPAAAADwAAAA8AAAARAAAAkQAAAZfAAAAFwAAA1IAAANSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAxEAAAAXwAAABcAAAIXAAABFwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAA8AAAAPAAAADwAAABEAAACRAAAA18AAABfAAAAXwAAAF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAPAAAADwAAAA8AAAARAAAAEQAAAxEAAAGRAAAC0QAAAdEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAVEAAAGRAAADEQAAANEAAAFDAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAA8AAAAPAAAADwAAABEAAADRAAAA0QAAAlEAAAGDAAAA1wAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAPAAAADwAAAA8AAAARAAABUQAAAREAAADRAAAAwwAAAJcAAABAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAdEAAACRAAACUQAAAgMAAAAXAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAA8AAAAPAAAADwAAAAXAAADRAAABUQAAAJEAAALDAAAAgwAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAPAAAADwAAAA8AAAAXwAAAF8AAABfAAAAXwAAAF8AAAAMAAACAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAD8AAAA/AAAAPwAAAD8AAAA/AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAA8AAAAPAAAADwAAABfAAAAXwAAAF8AAABfAAAAXwAAAAwAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAPAAAADwAAAA8AAAAXwAAAF8AAABfAAAAXwAAAF8AAAAMAAABAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAREAAAIRAAABkQAAABfAAAADAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAKUQAAAAAAcAAAAAAAGgAAAAACYwAAAAADYwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAABYwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAAAYwAAAAACYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAADUQAAAAAEUQAAAAAAUQAAAAAEDAAAAAACbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAADAAAAAACbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAADAAAAAACbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAGgAAAAADUQAAAAAAUQAAAAAAUQAAAAALDAAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAADAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAIcAAAAAAADAAAAAAB + version: 6 0,-1: ind: 0,-1 - tiles: UgAAAFIAAAJfAAAAUgAAAVIAAAFSAAABUgAAAFIAAAIXAAABFwAAABcAAAMXAAADFwAAAxcAAAIXAAACFwAAAUUAAAFSAAABUgAAA1IAAAJSAAADUgAAA1IAAANSAAACFwAAAkEAAAAXAAABQQAAABcAAAFBAAAAFwAAABcAAAFSAAAAUgAAA18AAABSAAABUgAAAFIAAABSAAABUgAAABcAAAFBAAAAFwAAAUEAAAAXAAABQQAAABcAAAAXAAACFwAAABcAAAAXAAADRQAAAkUAAANFAAACUgAAAlIAAAIXAAABFwAAABcAAAIXAAACFwAAARcAAAEXAAABFwAAAV8AAABfAAAAUgAAAkUAAAFFAAACRQAAAVIAAAJSAAADDAAAARcAAAEXAAABFwAAAxcAAAEXAAAAFwAAARcAAANEAAAFRAAACVIAAAJFAAADRQAAAEUAAABSAAAAUgAAAkQAAAwXAAADFwAAAj8AAAA/AAAAPwAAAD8AAAA/AAAADAAAAAwAAAIMAAADDAAAAAwAAAJfAAAAFwAAAV8AAAAMAAAADAAAAgwAAAMMAAAADAAAABcAAAAXAAACFwAAAUEAAABBAAAAXAAAAFwAAANcAAACFwAAARcAAAMXAAAAFwAAARcAAAIXAAADXwAAABcAAAIXAAADFwAAAhcAAANcAAACXAAAAVwAAAJcAAADXAAAAxcAAAIXAAACFwAAARcAAAAXAAADFwAAARcAAAIXAAACFwAAAxcAAAEXAAAAXAAAA1wAAABcAAABXAAAAVwAAAMXAAABFwAAAhcAAAAXAAADFwAAABcAAAJfAAAAFwAAAxcAAAAXAAACFwAAAQwAAAIMAAACDAAAAgwAAAIMAAACDAAAAwwAAAAMAAABDAAAAAwAAAAMAAAADAAAAwwAAAIXAAABFwAAAxcAAAIMAAADDAAAAwwAAAIMAAADDAAAAAwAAAAMAAADDAAAAAwAAAAmAAAAJgAAACYAAAAMAAAAXAAAAFwAAAFcAAABDAAAAQwAAAIMAAACDAAAAgwAAAEMAAABDAAAAUEAAAAMAAABJgAAACYAAAAmAAAADAAAAlwAAAJcAAAAXAAAAgwAAAMMAAADDAAAAAwAAAAMAAAADAAAAgwAAANBAAAADAAAAz0AAAAmAAAADAAAAQwAAAIXAAAAFwAAAxcAAAAMAAADDAAAAwwAAAEMAAAADAAAAgwAAAEMAAABQQAAAAwAAAE9AAAAPQAAAD0AAAA9AAAAPQAAAD0AAAA9AAAADAAAAgwAAAAMAAACDAAAAwwAAAIMAAAADAAAAQwAAAIMAAABPQAAAD0AAAAmAAAAPQAAAD0AAABEAAAHRAAACg== + tiles: YwAAAAAAYwAAAAADcAAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAADYwAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAABGgAAAAAAGgAAAAADGgAAAAACUwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAAAYwAAAAADYwAAAAADGgAAAAADTgAAAAAAGgAAAAACTgAAAAAAGgAAAAADTgAAAAAAGgAAAAADGgAAAAADYwAAAAAAYwAAAAACcAAAAAAAYwAAAAADYwAAAAACYwAAAAADYwAAAAACYwAAAAACGgAAAAADTgAAAAAAGgAAAAADTgAAAAAAGgAAAAABTgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAUwAAAAADUwAAAAACUwAAAAADYwAAAAADYwAAAAACGgAAAAABGgAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACYwAAAAADYwAAAAACDAAAAAACGgAAAAADGgAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAAAGgAAAAADUQAAAAAAUQAAAAAAYwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAYwAAAAACYwAAAAAAUQAAAAAAGgAAAAADGgAAAAADTAAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAADAAAAAABDAAAAAADDAAAAAACDAAAAAAADAAAAAADcAAAAAAAGgAAAAABcAAAAAAADAAAAAADDAAAAAACDAAAAAAADAAAAAACDAAAAAAAGgAAAAABGgAAAAADGgAAAAABTgAAAAAATgAAAAAAbQAAAAACbQAAAAACbQAAAAADGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAGgAAAAACGgAAAAACGgAAAAADGgAAAAABbQAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAADGgAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAADGgAAAAABGgAAAAACGgAAAAABbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAADGgAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAACDAAAAAACDAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAABDAAAAAACDAAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAAADAAAAAABGgAAAAAAGgAAAAACGgAAAAACDAAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAABDAAAAAABDAAAAAADDAAAAAAADAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADAAAAAACbQAAAAAAbQAAAAADbQAAAAABDAAAAAACDAAAAAACDAAAAAAADAAAAAAADAAAAAADDAAAAAAADAAAAAAATgAAAAAADAAAAAACKQAAAAAAKQAAAAAAKQAAAAAADAAAAAADbQAAAAABbQAAAAABbQAAAAADDAAAAAADDAAAAAABDAAAAAADDAAAAAACDAAAAAADDAAAAAAADAAAAAAATgAAAAAADAAAAAAASgAAAAAAKQAAAAAADAAAAAAADAAAAAACGgAAAAAAGgAAAAACcAAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAAADAAAAAADDAAAAAABDAAAAAACTgAAAAAADAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAADAAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAACDAAAAAABDAAAAAABDAAAAAAADAAAAAACSgAAAAAASgAAAAAAKQAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAA + version: 6 0,0: ind: 0,0 - tiles: FwAAAxcAAAMXAAADDAAAAAwAAAAMAAACDAAAAwwAAAIMAAABPQAAAD0AAAA9AAAAPQAAAD0AAABEAAAIRAAAAl8AAABfAAAAXwAAABcAAAFfAAAADAAAAQwAAAEMAAADDAAAAAwAAAMMAAACDAAAAAwAAABEAAAIRAAAAUQAAAxEAAAIRAAACV8AAAA8AAAAXwAAAEQAAAZEAAAMRAAADEQAAAVEAAAERAAAAEQAAAFEAAABRAAABkQAAAtEAAAKRAAAAkQAAApfAAAAPAAAAF8AAABEAAADRAAAAkQAAAVEAAAARAAAAEQAAAREAAACRAAACUQAAAw8AAAARAAACkQAAAtEAAACPAAAADwAAABEAAAHRAAAAEQAAAVEAAACRAAACEQAAAZEAAAIRAAAAkQAAANEAAAERAAAAEQAAAlEAAALRAAADEQAAAo8AAAARAAACEQAAAxEAAABRAAAA0QAAABEAAABRAAABkQAAAhEAAAIRAAAAUQAAAZEAAAHRAAADEQAAAdEAAAGRAAAAkQAAAxEAAAHRAAAA0QAAANEAAAIRAAABkQAAAdEAAAKRAAABkQAAAxEAAAKRAAABUQAAANEAAACRAAACEQAAApEAAABRAAABUQAAAVEAAAMRAAAAUQAAAdEAAADRAAACkQAAABEAAAHRAAABUQAAAFEAAAHRAAABUQAAAVEAAAHRAAAA0QAAApEAAADRAAABEQAAAdEAAAMRAAAA0QAAAdEAAAJRAAACEQAAAtEAAAFRAAABEQAAANEAAAMRAAABUQAAApEAAADRAAACUQAAAxEAAAIRAAADEQAAApEAAAIRAAAAkQAAANEAAALRAAABUQAAAdEAAAMRAAAA0QAAAxEAAAAPAAAADwAAAA8AAAARAAAAkQAAABEAAABRAAAAUQAAAdEAAABRAAACkQAAAxEAAAMRAAAB0QAAApEAAAERAAAAjwAAAA8AAAAPAAAAEQAAAREAAAHRAAACkQAAAVEAAAFRAAACkQAAABEAAALRAAACEQAAAhEAAAERAAAB0QAAAw8AAAAPAAAADwAAABEAAAERAAABkQAAAZEAAAGRAAAAkQAAAxEAAAERAAAAUQAAAhEAAAJRAAAA0QAAApEAAAMPAAAADwAAAA8AAAARAAABUQAAAVEAAAIRAAAC0QAAANEAAAGRAAABUQAAAhEAAAERAAACkQAAAFEAAADRAAACTwAAAA8AAAAPAAAAEQAAApEAAAARAAAAUQAAAxEAAADRAAAB0QAAABEAAAKRAAAAEQAAAxEAAABRAAAAUQAAAREAAAFRAAAAUQAAAdEAAADRAAAA0QAAAhEAAAERAAACkQAAAdEAAAFRAAAAw== + tiles: GgAAAAADGgAAAAACGgAAAAACDAAAAAAADAAAAAABDAAAAAABDAAAAAABDAAAAAACDAAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUQAAAAAGcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAADAAAAAAADAAAAAABDAAAAAABDAAAAAACDAAAAAABDAAAAAAADAAAAAACDAAAAAACUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAASQAAAAAAcAAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAcAAAAAAASQAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAUQAAAAAIUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAIUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAKUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAGUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAMUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAACUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAJUQAAAAAAUQAAAAAFSQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAHUQAAAAAHUQAAAAAKUQAAAAAFUQAAAAAAUQAAAAALUQAAAAAA + version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAhEAAAARAAABEQAAABfAAAAXwAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA8AAAAPAAAADwAAABEAAALRAAABUQAAAlEAAAERAAAAl8AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAPAAAADwAAABEAAAARAAAC0QAAAFEAAAERAAAA0QAAAFEAAAJXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADwAAAA8AAAARAAAAUQAAAJEAAABRAAAAkQAAAVEAAAFRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA8AAAARAAACEQAAAtEAAABRAAABEQAAANEAAAFRAAAAEQAAAlEAAAJFwAAAxcAAAAXAAABRAAAARcAAAIXAAADRAAACkQAAABEAAAIRAAAAkQAAAZEAAAMRAAACkQAAAdEAAAERAAAAxcAAAAXAAABFwAAAhcAAAEXAAAAFwAAA0QAAAVEAAAGRAAABUQAAAJEAAAMRAAABkQAAABEAAAHRAAABkQAAAYXAAADFwAAABcAAABEAAAJFwAAAhcAAABEAAALRAAABkQAAAlEAAAHRAAABUQAAAhEAAABRAAAA0QAAAg8AAAAFwAAAxcAAAAXAAAAPAAAADwAAAA8AAAARAAABUQAAAdEAAACRAAACkQAAAdEAAALRAAACEQAAANEAAAIPAAAADwAAAA8AAAAFwAAADwAAAA8AAAAPAAAADwAAABEAAAARAAACEQAAANEAAABRAAAAEQAAANEAAAHRAAABTwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAARAAACEQAAApEAAAIRAAACEQAAAVEAAAMRAAAA0QAAApEAAAARAAAAUQAAAdEAAAGRAAABkQAAAREAAADPAAAAEQAAAdEAAAJRAAABUQAAANEAAAFRAAACEQAAAdEAAAARAAAAEQAAAREAAAHRAAAAEQAAAZEAAABRAAABDwAAABEAAAARAAABUQAAApEAAALRAAAAUQAAAVEAAAERAAAAkQAAAVEAAACRAAACUQAAABEAAAARAAADEQAAAo8AAAARAAABkQAAApEAAAIRAAACkQAAAZEAAACRAAAAUQAAAdEAAADRAAAAUQAAAVEAAABRAAAAkQAAAtEAAAEPAAAAEQAAAdEAAAIRAAAAUQAAAdEAAADRAAACEQAAAxEAAAJRAAACEQAAAhEAAAARAAABEQAAAZEAAAKRAAACEQAAABEAAAIRAAAAkQAAApEAAAMRAAAAUQAAAxEAAAFRAAABg== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAAUQAAAAAKUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAKUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAGGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAIcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAADGgAAAAACGgAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAABGgAAAAABUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAGSQAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAADUQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAAOAAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKSQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAA + version: 6 1,-1: ind: 1,-1 - tiles: FwAAAhcAAAMXAAACFwAAAhcAAAA7AAAAOwAAADsAAAAXAAADFwAAAhcAAAEXAAAAXwAAAEQAAAxEAAAGRAAAAhcAAAIXAAABFwAAAxcAAAMXAAACOwAAADsAAAA7AAAAFwAAARcAAAAXAAACFwAAA18AAABEAAAFRAAADEQAAAEXAAAAFwAAABcAAAIXAAADFwAAARcAAAEXAAAAFwAAAxcAAAIXAAAAFwAAAxcAAANfAAAARAAAC0QAAAxEAAAMFwAAABcAAAIXAAADFwAAARcAAAEXAAAAFwAAARcAAAAXAAACFwAAAl8AAABfAAAAXwAAAEQAAAlEAAAHRAAABhcAAAEXAAAAFwAAAxcAAAIXAAADFwAAAhcAAAEXAAABFwAAAhcAAAJEAAAGRAAACUQAAAdEAAAMRAAACQAAAAAXAAADFwAAABcAAAMXAAAAFwAAAhcAAAIXAAABFwAAAxcAAAEXAAACRAAABUQAAAY8AAAARAAACUQAAAwAAAAAFwAAAhcAAAFBAAAAQQAAAEEAAABBAAAAQQAAABcAAAAXAAABFwAAAkQAAApEAAAMRAAAAEQAAAZEAAAGAAAAAF8AAAAXAAAAQQAAAEEAAABBAAAAQQAAAEEAAAAXAAABFwAAAxcAAAJEAAAGPAAAAEQAAABEAAADRAAAAQAAAAAXAAADFwAAAUEAAABBAAAAQQAAAEEAAABBAAAAFwAAARcAAAAXAAABRAAAAjwAAAA8AAAARAAABUQAAANEAAAMXwAAABcAAAFBAAAAQQAAAEEAAABBAAAAQQAAABcAAAEXAAAAFwAAAkQAAAY8AAAARAAACkQAAAZEAAAERAAAChcAAAEXAAADQQAAAEEAAABBAAAAQQAAAEEAAAAXAAAAFwAAABcAAANEAAAHRAAAAEQAAAFEAAAIRAAACkQAAAUXAAACFwAAABcAAAIXAAADFwAAABcAAAMXAAAAFwAAAhcAAAAXAAABRAAAAjwAAABEAAAJRAAABUQAAAxEAAABFwAAABcAAAEXAAABFwAAABcAAAAXAAACFwAAABcAAAIXAAACFwAAAEQAAABEAAAGRAAABEQAAAVEAAAERAAACxcAAAMXAAADFwAAAhcAAAAXAAAAFwAAAhcAAAMXAAACFwAAARcAAABEAAAMPAAAADwAAABEAAAIRAAACkQAAAtEAAAIRAAAAkQAAAZEAAAGRAAABEQAAAdEAAAKRAAAAUQAAApEAAABRAAADEQAAAZEAAAARAAAAUQAAApEAAAKPAAAAEQAAAE8AAAARAAACjwAAAA8AAAAPAAAAEQAAAFEAAAIRAAAADwAAAA8AAAARAAACEQAAApEAAAFRAAACg== + tiles: GgAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAACcAAAAAAAUQAAAAAAUQAAAAABUQAAAAACGgAAAAADGgAAAAADGgAAAAADGgAAAAAAGgAAAAADRwAAAAAARwAAAAAARwAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAACcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAADGgAAAAABGgAAAAACcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAACGgAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAAMUQAAAAAHUQAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAABUQAAAAAAUQAAAAADUQAAAAAAUQAAAAACUQAAAAAAAAAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAABGgAAAAADGgAAAAABGgAAAAACUQAAAAAFUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAGgAAAAADGgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGgAAAAACGgAAAAACGgAAAAACUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAACAAAAAAAAcAAAAAAAGgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGgAAAAADGgAAAAADGgAAAAACUQAAAAAESQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAAAAAAAAAGgAAAAAAGgAAAAABTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGgAAAAACGgAAAAADGgAAAAACUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAACTgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGgAAAAAAGgAAAAADGgAAAAACUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAcAAAAAAAGgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAGgAAAAAAGgAAAAABGgAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAABGgAAAAABUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAACGgAAAAAAGgAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAGcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAUQAAAAAASQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAA + version: 6 0,-2: ind: 0,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAIRAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAABUQAAApEAAAERAAAC0QAAANEAAAIRAAABUQAAApEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAApEAAAERAAAAEQAAAdEAAALRAAABkQAAAdEAAAERAAACEQAAAFEAAABRAAABkQAAAZEAAAIRAAADEQAAAxEAAAERAAAAkQAAAVEAAAFRAAAAEQAAAQ8AAAARAAACEQAAARfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARAAAA0QAAAdEAAAKRAAAAUQAAAlEAAAJRAAAAUQAAAJEAAAJXwAAADsAAAA7AAAAOwAAADsAAAA7AAAAXwAAAEQAAAFEAAALRAAABkQAAAFEAAACRAAABEQAAApEAAAKRAAAB18AAAA7AAAAOwAAADsAAAA7AAAAOwAAAF8AAABEAAAARAAACUQAAAVEAAAHRAAABkQAAAREAAAIRAAAA0QAAAFfAAAAOwAAADsAAAA7AAAAOwAAADsAAABfAAAARAAAA0QAAAVEAAALRAAAB0QAAAREAAAHRAAACkQAAAlEAAAMXwAAADsAAAA7AAAAOwAAADsAAAA7AAAAXwAAAEQAAAJEAAAFRAAAAVIAAANSAAAAUgAAAFIAAAJSAAACPAAAAF8AAABFAAACRQAAAUUAAABFAAAARQAAAl8AAABfAAAARAAACUQAAAxSAAABUgAAAFIAAANSAAADUgAAA18AAABPAAAARQAAA0UAAAJFAAADRQAAAkUAAAFfAAAAFwAAAxcAAAJEAAAKUgAAAVIAAAFSAAABUgAAAVIAAAFPAAAATwAAAEUAAANFAAAARQAAAUUAAABFAAACXwAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAAAYwAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAAAcAAAAAAAXwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAADcAAAAAAAGgAAAAAAGgAAAAABUQAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAADYwAAAAAAXwAAAAAAXwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAA + version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAERAAAAEQAAAxEAAAIRAAACUQAAAxEAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAACkQAAAlEAAAHRAAABUQAAAREAAALRAAABEQAAAdEAAAARAAACAAAAAAAAAAAAAAAAAAAAABEAAAHRAAAAUQAAAZEAAAKRAAAAEQAAAREAAABRAAACUQAAAZEAAAARAAACUQAAAJeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAPAAAADwAAAA8AAAAFwAAAEQAAAtEAAABRAAAB0QAAApEAAAKXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAJEAAAFRAAADEQAAAhEAAAKRAAAAV4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAA8AAAAPAAAADwAAABEAAAFRAAABEQAAAVEAAAHRAAABUQAAAheAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAPAAAADwAAAA8AAAARAAAB0QAAANEAAAARAAACkQAAAdEAAAHAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAlEAAAIRAAACEQAAAREAAAJRAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAAA8AAAAPAAAADwAAABEAAAKRAAACUQAAAtEAAAGRAAACUQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAPAAAADwAAAA8AAAARAAAAEQAAAhfAAAAXwAAAF8AAABfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAADwAAAA8AAAAPAAAAEQAAAZEAAAAXwAAABcAAAIXAAAAFwAAAQ== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAFUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAGgAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAAC + version: 6 -1,1: ind: -1,1 - tiles: RAAABkQAAAxEAAAERAAAAkQAAAdEAAAERAAABkQAAABEAAAGRAAACEQAAAtEAAAFRAAADEQAAApEAAAKRAAAAkQAAAhEAAAKRAAADEQAAAJEAAABRAAADEQAAABEAAAGRAAABkQAAAxEAAALRAAABEQAAAhEAAAHRAAABkQAAAhEAAALRAAABEQAAAlEAAAMRAAACUQAAApEAAAHPAAAADwAAABEAAAERAAAAUQAAAlEAAAHRAAABEQAAAlEAAAEEgAAABIAAAASAAAAEgAAAEQAAAZEAAAHRAAAATwAAAA8AAAARAAAA0QAAANEAAACRAAABkQAAAREAAAKRAAABhIAAAASAAAAEgAAABIAAABEAAAKRAAAC0QAAAc8AAAAPAAAAEQAAANEAAAJRAAAAEQAAAk8AAAAPAAAADwAAAASAAAAEgAAABIAAAASAAAARAAAAkQAAAlEAAAMRAAABEQAAAZEAAAEPAAAAEQAAAdEAAAKRAAACEQAAAZEAAAKEgAAABIAAAASAAAAEgAAAEQAAAlEAAALRAAAA0QAAAxEAAAARAAAAUQAAApEAAAGRAAAA0QAAABEAAAKRAAABhIAAAASAAAAEgAAABIAAABEAAAGRAAAAUQAAAlEAAAHRAAACUQAAAFEAAACRAAAB0QAAAdEAAAHAAAAAAAAAAASAAAAEgAAABIAAAASAAAARAAABkQAAAhEAAAGRAAAB0QAAAJEAAAMRAAAB0QAAAZEAAAGRAAAAgAAAAAAAAAARAAACkQAAAJEAAABRAAACUQAAABEAAAKRAAABkQAAAVEAAAMRAAACkQAAAxEAAAJRAAACEQAAAMAAAAAAAAAAEQAAAZEAAAMRAAACEQAAAlEAAAGRAAAAUQAAAFEAAAERAAABUQAAANEAAAGRAAABkQAAAtEAAAMAAAAAAAAAABEAAAFRAAACEQAAABEAAAARAAAAUQAAApEAAACRAAABEQAAAxEAAABRAAABkQAAAFEAAALRAAABwAAAAAAAAAARAAADEQAAAdEAAABRAAAAkQAAAdEAAAFRAAACUQAAAdEAAAHRAAABUQAAANEAAAHRAAAC0QAAAUAAAAAAAAAAEQAAAZEAAAIRAAAB0QAAAVEAAACRAAAAkQAAAtEAAADRAAAB0QAAAVEAAAMRAAACkQAAAREAAABAAAAAAAAAABEAAALRAAAB0QAAAJEAAADRAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UQAAAAAIUQAAAAAAUQAAAAALUQAAAAAAUQAAAAADUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAFUQAAAAADUQAAAAAEUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFSQAAAAAASQAAAAAASQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAACUQAAAAAAUQAAAAADSQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,1: ind: 0,1 - tiles: RAAABEQAAAZEAAAHRAAAC0QAAApEAAAFRAAACEQAAAtEAAAARAAAAEQAAApEAAAGRAAACEQAAAxEAAAMRAAABUQAAAxEAAAGRAAACEQAAAxEAAAARAAABEQAAABEAAAHRAAABkQAAAlEAAAIRAAABkQAAAxEAAABRAAACkQAAAhEAAAGRAAABkQAAAdEAAAHRAAABkQAAAhEAAALRAAAA0QAAAFEAAAIRAAAAEQAAApEAAAIRAAAA0QAAANEAAADRAAACEQAAABEAAAIRAAABUQAAABEAAABRAAABkQAAAhEAAAARAAAA0QAAAtEAAABRAAABUQAAAlEAAAKRAAADDwAAABEAAAJRAAAAkQAAAVEAAADRAAABEQAAAdEAAAEPAAAAEQAAAY8AAAAPAAAADwAAAA8AAAARAAADEQAAAZfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABEAAAERAAACUQAAANEAAALRAAACkQAAAVEAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAACUQAAAJEAAABRAAADEQAAANEAAACRAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAABUQAAAREAAACRAAACkQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAACUQAAAtEAAAIRAAABUQAAAxEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAApEAAAFRAAACkQAAAJEAAAKRAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACRAAABUQAAAFEAAAARAAAAkQAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAAZEAAAJRAAAAkQAAAZEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAIRAAAAEQAAAREAAAJRAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAACUQAAAFEAAAERAAABUQAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAACEQAAAJEAAAJRAAADEQAAAtEAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAZEAAAERAAACEQAAAVEAAAHRAAACQ== + tiles: UQAAAAAAUQAAAAAEUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAAJUQAAAAAGUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAABUQAAAAALUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAIUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAGUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAACUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAADUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAA + version: 6 1,1: ind: 1,1 - tiles: RAAAA0QAAAFEAAAJRAAABUQAAAdEAAAJRAAABkQAAAlEAAAHRAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAVEAAAMRAAABkQAAAJEAAAKRAAAAUQAAAdEAAALRAAAAUQAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAALRAAAA0QAAAI8AAAARAAABEQAAAFEAAADRAAADEQAAAhEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAABkQAAAJEAAALPAAAAEQAAABEAAABRAAACEQAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAk8AAAAPAAAADwAAABEAAAMRAAAB0QAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAERAAADEQAAAtEAAACRAAAB0QAAAREAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAADEQAAAZEAAACRAAAAkQAAAxEAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAlEAAAARAAAB0QAAAhEAAALRAAACwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAHRAAACEQAAAZEAAALRAAAAkQAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAABEQAAAdEAAAFRAAAAEQAAABEAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAxEAAAARAAAA0QAAAdEAAAHRAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAALRAAAAEQAAAlEAAAHRAAAC0QAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAB0QAAAVEAAAHRAAABEQAAAhEAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAxEAAAKRAAABEQAAAdEAAACRAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAERAAAA0QAAAdEAAAJRAAAAEQAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAABEQAAAFEAAAERAAAA0QAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAGUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAABUQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,0: ind: 1,0 - tiles: RAAADDwAAAA8AAAARAAAB0QAAAJEAAALRAAACUQAAAhEAAAHPAAAADwAAABEAAAIRAAAAEQAAABEAAAJRAAABkQAAAFEAAAMRAAAC0QAAAZEAAABRAAACUQAAAtEAAAFRAAAA0QAAAxEAAACRAAAB0QAAAhEAAABRAAAB0QAAANEAAAHRAAAB0QAAAZEAAAKRAAAA0QAAAdEAAAMRAAACUQAAAVEAAADRAAACEQAAAtEAAAFRAAABkQAAAxEAAAHRAAAAkQAAAhEAAAIRAAAAEQAAAJEAAAFRAAABkQAAAJEAAABRAAACkQAAAtEAAAKRAAABkQAAApEAAAJRAAAB0QAAAFEAAAGRAAAA0QAAAVEAAAKRAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAEQAAAhEAAADRAAACUQAAApEAAADRAAACUQAAAZEAAALRAAACUQAAAVEAAAARAAAAkQAAAFEAAALRAAACkQAAAVEAAALRAAAC0QAAABEAAAERAAABkQAAAREAAAMRAAACkQAAABEAAADRAAABkQAAAREAAAFRAAAB0QAAAlEAAACRAAACUQAAAREAAAIRAAAB0QAAABEAAAARAAACUQAAAtEAAAGRAAAAUQAAAlEAAAARAAAC0QAAAFEAAADAAAAAAAAAABEAAAKRAAABkQAAABEAAACRAAAC0QAAAtEAAAARAAAA0QAAAxEAAAHRAAACEQAAAhEAAAARAAACgAAAAAAAAAARAAADEQAAAVEAAAARAAAB0QAAAREAAAARAAADEQAAAhEAAALRAAAC0QAAApEAAAHRAAADEQAAAYAAAAAAAAAAEQAAAREAAALRAAAA0QAAABEAAAJRAAABUQAAANEAAAGRAAADEQAAAxEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAADEQAAAJEAAALRAAACEQAAAxEAAACRAAACEQAAAtEAAAHRAAACgAAAAAAAAAAAAAAAAAAAAAAAAAARAAACUQAAAREAAAGRAAAAUQAAAZEAAAJRAAAA0QAAAxEAAACRAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAxEAAAKRAAAAkQAAAtEAAAJRAAAC0QAAApEAAABRAAACEQAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAIRAAACEQAAAxEAAAARAAAAEQAAANEAAAHRAAAC0QAAAREAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAkQAAAREAAAMPAAAAEQAAApEAAAFRAAAAkQAAANEAAAIRAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UQAAAAAASQAAAAAASQAAAAAAUQAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAALUQAAAAALUQAAAAAAUQAAAAAMUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAFUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAHAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAHUQAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAEUQAAAAAJUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAACUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAABUQAAAAAASQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAREAAACRAAAB0QAAApEAAAMRAAAAkQAAApEAAAFRAAAAkQAAAREAAAERAAABUQAAApEAAAJRAAABgAAAABEAAAKRAAACEQAAAZEAAADRAAAATwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAABEAAADRAAAC0QAAABEAAAARAAAB0QAAABEAAACRAAACEQAAAFEAAACRAAAC0QAAAdEAAAJRAAACkQAAAtEAAAJRAAAAUQAAANEAAAARAAAA0QAAAlEAAAARAAABUQAAAhEAAAERAAAC0QAAANEAAACRAAAA0QAAAxEAAADRAAAC0QAAAJEAAAIRAAAAUQAAANfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAAXwAAAF8AAABfAAAARAAAC0QAAAxEAAAAXwAAAE8AAAAXAAAAFwAAAhcAAAJfAAAAXwAAAF8AAAAXAAACFwAAARcAAAJPAAAAXwAAAEQAAAVEAAACRAAACF8AAABPAAAAFwAAAhcAAAEXAAADFwAAAxcAAAIXAAADFwAAARcAAAAXAAACTwAAAF8AAABEAAAKRAAAAkQAAApfAAAATwAAABcAAAIXAAACFwAAAF8AAABfAAAAXwAAABcAAAIXAAABFwAAAU8AAABfAAAARAAACEQAAAFEAAAJRAAAAhcAAAMXAAADFwAAAxcAAAI7AAAAOwAAADsAAAAXAAADFwAAABcAAAEXAAADXwAAAEQAAAdEAAAMRAAACw== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAABUQAAAAAAUQAAAAAAAAAAAAAAUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAUQAAAAAMUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAADUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAACUQAAAAAMUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAXwAAAAAAGgAAAAACGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABXwAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJcAAAAAAAXwAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAACGgAAAAACGgAAAAADGgAAAAABGgAAAAABGgAAAAABXwAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAXwAAAAAAGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACXwAAAAAAcAAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAEGgAAAAACGgAAAAACGgAAAAABGgAAAAABRwAAAAAARwAAAAAARwAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAAAcAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAD + version: 6 -2,0: ind: -2,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAtEAAAARAAACkQAAAhEAAALAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAJRAAAAEQAAAFEAAAERAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAMRAAAB0QAAAFEAAAFRAAABEQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAABkQAAAVEAAAGRAAABjwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAdEAAAFRAAACEQAAAE8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAALRAAABjwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAACEQAAANEAAALRAAABUQAAABEAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAB0QAAApEAAAMRAAAAkQAAAREAAAARAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAC0QAAAdEAAAGRAAACUQAAAFEAAAERAAABkQAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAKRAAAC0QAAABEAAAIRAAABUQAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAGRAAADEQAAAtEAAAGRAAABEQAAAREAAAERAAACA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAHUQAAAAAAUQAAAAABSQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAASQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAESQAAAAAASQAAAAAASQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAALUQAAAAAAUQAAAAALUQAAAAABUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAALUQAAAAAAUQAAAAAAUQAAAAABUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAA + version: 6 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAIRAAACkQAAAhEAAAGRAAABkQAAAxEAAAGRAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAB0QAAAZEAAAFRAAADEQAAAlEAAALRAAABUQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAJRAAACUQAAAZEAAALRAAAB0QAAAhEAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAACUQAAANEAAAIPAAAAEQAAAwSAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAAFEAAADRAAACzwAAABEAAAGEgAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAEQAAAJEAAALRAAACEQAAABEAAAFRAAACxIAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAVEAAAJRAAAC0QAAAxEAAAGRAAABkQAAAcSAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAFRAAACUQAAAJEAAAARAAABEQAAANEAAAMEgAAABIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAUQAAAZEAAAJRAAAAUQAAAZEAAALRAAABRIAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAABEAAAHRAAADEQAAAFEAAACRAAACEQAAApEAAAHRAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAAARAAAAEQAAAREAAAIRAAAAUQAAAFEAAAKRAAAAUQAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAC0QAAAhEAAABRAAACUQAAAdEAAAIRAAAAUQAAANEAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAhEAAAJRAAACkQAAAtEAAAERAAAA0QAAAlEAAADRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAVEAAAFRAAACUQAAAlEAAADRAAAB0QAAANEAAAKRAAAA0QAAAoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAALRAAACEQAAAZEAAAJRAAABUQAAAVEAAAIRAAACkQAAAREAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAADEQAAAVEAAAERAAAA0QAAAlEAAADRAAABkQAAApEAAAFAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAASQAAAAAAUQAAAAAKEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAJUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAHUQAAAAAKUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAGUQAAAAAJUQAAAAALUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAALUQAAAAAIUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAGEgAAAAAAEgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAADUQAAAAAEUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAEUQAAAAAAUQAAAAAMUQAAAAACUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAEUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAIUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAFUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAA + version: 6 -2,-2: ind: -2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,0: ind: 2,0 - tiles: PAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-1: ind: 2,-1 - tiles: PAAAAEQAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAABEAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAARAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAEQAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: SQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAUQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAUQAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAtEAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAADRAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAACEQAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAApEAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABEAAALRAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAEQAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAIUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARAAAA0QAAAVEAAADRAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 0,2: ind: 0,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAxEAAAJRAAAA0QAAANEAAAIRAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAFUQAAAAAEUQAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 1,2: ind: 1,2 - tiles: RAAAC0QAAApEAAAHRAAAC0QAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: UQAAAAAAUQAAAAAFUQAAAAACUQAAAAAJUQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXgAAAF4AAABeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAF4AAABeAAAAXgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABeAAAAXgAAAF4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 type: MapGrid - type: Broadphase - - angularDamping: 0.05 + - bodyStatus: InAir + angularDamping: 0.05 linearDamping: 0.05 fixedRotation: False bodyType: Dynamic @@ -122,379 +147,384 @@ entities: color: '#FFFFFFFF' id: Arrows decals: - 318: 27,-15 + 311: 27,-15 - node: color: '#FFFFFFFF' id: Arrows decals: - 316: 18,-19 - 317: 26,-19 + 309: 18,-19 + 310: 26,-19 + - node: + color: '#FFFFFFFF' + id: Basalt1 + decals: + 369: 26.834131,4.97881 - node: color: '#FFFFFFFF' id: Bot decals: - 302: 21,-16 - 303: 22,-15 - 304: 23,-16 - 309: 22,-17 - 310: 17,-19 - 311: 27,-19 + 295: 21,-16 + 296: 22,-15 + 297: 23,-16 + 302: 22,-17 + 303: 17,-19 + 304: 27,-19 - node: color: '#FFFFFFFF' id: BotLeft decals: - 201: 5,-11 - 202: 4,-11 - 307: 23,-15 - 308: 21,-17 - 312: 27,-18 - 313: 17,-20 + 194: 5,-11 + 195: 4,-11 + 300: 23,-15 + 301: 21,-17 + 305: 27,-18 + 306: 17,-20 - node: color: '#FFFFFFFF' id: BotRight decals: - 305: 23,-17 - 306: 21,-15 - 314: 27,-20 - 315: 17,-18 + 298: 23,-17 + 299: 21,-15 + 307: 27,-20 + 308: 17,-18 - node: color: '#FFFFFFFF' id: Box decals: - 213: 12,-22 + 206: 12,-22 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN decals: - 333: 2,-1 - 334: 1,-1 - 335: 0,-1 + 326: 2,-1 + 327: 1,-1 + 328: 0,-1 - node: color: '#52B4E996' id: BrickTileSteelBox decals: - 245: -3,-15 - 246: -2,-17 - 247: 1,-17 - 248: 1,-13 - 249: -2,-13 + 238: -3,-15 + 239: -2,-17 + 240: 1,-17 + 241: 1,-13 + 242: -2,-13 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNe decals: - 150: 15,-12 - 156: 10,-11 - 193: 5,-11 - 339: 10,-7 - 346: 15,-7 + 143: 15,-12 + 149: 10,-11 + 186: 5,-11 + 332: 10,-7 + 339: 15,-7 - node: color: '#DE3A3A96' id: BrickTileSteelCornerNw decals: - 157: 9,-11 - 194: 3,-11 - 347: 12,-7 + 150: 9,-11 + 187: 3,-11 + 340: 12,-7 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSe decals: - 148: 15,-15 - 195: 5,-13 - 266: 27,-17 - 271: 26,-20 - 336: 10,-9 - 349: 15,-9 + 141: 15,-15 + 188: 5,-13 + 259: 27,-17 + 264: 26,-20 + 329: 10,-9 + 342: 15,-9 - node: color: '#DE3A3A96' id: BrickTileSteelCornerSw decals: - 134: 14,-15 - 145: 9,-13 - 196: 3,-13 - 263: 17,-17 - 270: 18,-20 - 342: 5,-9 - 348: 12,-9 + 127: 14,-15 + 138: 9,-13 + 189: 3,-13 + 256: 17,-17 + 263: 18,-20 + 335: 5,-9 + 341: 12,-9 - node: color: '#DE3A3A96' id: BrickTileSteelEndS decals: - 132: 10,-15 - 133: 12,-15 + 125: 10,-15 + 126: 12,-15 - node: color: '#DE3A3A96' id: BrickTileSteelInnerNe decals: - 155: 10,-12 - 257: -3,-17 + 148: 10,-12 + 250: -3,-17 - node: color: '#DE3A3A96' id: BrickTileSteelInnerSe decals: - 146: 10,-13 - 147: 12,-13 - 256: -3,-13 - 267: 26,-17 - 296: 20,-14 + 139: 10,-13 + 140: 12,-13 + 249: -3,-13 + 260: 26,-17 + 289: 20,-14 - node: color: '#DE3A3A96' id: BrickTileSteelInnerSw decals: - 140: 10,-13 - 141: 12,-13 - 142: 14,-13 - 268: 18,-17 - 292: 24,-14 + 133: 10,-13 + 134: 12,-13 + 135: 14,-13 + 261: 18,-17 + 285: 24,-14 - node: color: '#DE3A3A96' id: BrickTileSteelLineE decals: - 135: 12,-14 - 136: 10,-14 - 149: 15,-13 - 198: 5,-12 - 254: -3,-16 - 255: -3,-14 - 264: 26,-19 - 265: 26,-18 - 272: 20,-17 - 273: 20,-16 - 274: 20,-15 - 297: 20,-19 - 319: 27,-16 - 320: 27,-15 + 128: 12,-14 + 129: 10,-14 + 142: 15,-13 + 191: 5,-12 + 247: -3,-16 + 248: -3,-14 + 257: 26,-19 + 258: 26,-18 + 265: 20,-17 + 266: 20,-16 + 267: 20,-15 + 290: 20,-19 + 312: 27,-16 + 313: 27,-15 - node: color: '#DE3A3A96' id: BrickTileSteelLineN decals: - 151: 14,-12 - 152: 13,-12 - 153: 12,-12 - 154: 11,-12 - 199: 4,-11 - 250: 0,-17 - 251: -1,-17 - 281: 26,-14 - 282: 25,-14 - 283: 23,-14 - 284: 22,-14 - 285: 21,-14 - 286: 20,-14 - 287: 18,-14 - 288: 19,-14 - 291: 24,-14 - 340: 9,-7 - 341: 8,-7 - 352: 13,-7 + 144: 14,-12 + 145: 13,-12 + 146: 12,-12 + 147: 11,-12 + 192: 4,-11 + 243: 0,-17 + 244: -1,-17 + 274: 26,-14 + 275: 25,-14 + 276: 23,-14 + 277: 22,-14 + 278: 21,-14 + 279: 20,-14 + 280: 18,-14 + 281: 19,-14 + 284: 24,-14 + 333: 9,-7 + 334: 8,-7 + 345: 13,-7 - node: color: '#DE3A3A96' id: BrickTileSteelLineS decals: - 143: 13,-13 - 144: 11,-13 - 197: 4,-13 - 252: 0,-13 - 253: -1,-13 - 279: 25,-20 - 280: 19,-20 - 293: 23,-14 - 294: 22,-14 - 295: 21,-14 - 337: 8,-9 - 338: 7,-9 - 350: 14,-9 - 351: 13,-9 + 136: 13,-13 + 137: 11,-13 + 190: 4,-13 + 245: 0,-13 + 246: -1,-13 + 272: 25,-20 + 273: 19,-20 + 286: 23,-14 + 287: 22,-14 + 288: 21,-14 + 330: 8,-9 + 331: 7,-9 + 343: 14,-9 + 344: 13,-9 - node: color: '#DE3A3A96' id: BrickTileSteelLineW decals: - 137: 14,-14 - 138: 12,-14 - 139: 10,-14 - 158: 9,-12 - 200: 3,-12 - 260: 18,-18 - 261: 17,-16 - 262: 17,-15 - 269: 18,-19 - 275: 24,-19 - 276: 24,-17 - 277: 24,-16 - 278: 24,-15 - 343: 5,-8 - 366: 5,-7 + 130: 14,-14 + 131: 12,-14 + 132: 10,-14 + 151: 9,-12 + 193: 3,-12 + 253: 18,-18 + 254: 17,-16 + 255: 17,-15 + 262: 18,-19 + 268: 24,-19 + 269: 24,-17 + 270: 24,-16 + 271: 24,-15 + 336: 5,-8 + 359: 5,-7 - node: color: '#9FED5896' id: BrickTileWhiteCornerNe decals: - 166: 7,-11 + 159: 7,-11 - node: color: '#9FED5896' id: BrickTileWhiteCornerNw decals: - 167: 6,-11 - 185: 3,-14 + 160: 6,-11 + 178: 3,-14 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe decals: - 178: 7,-18 + 171: 7,-18 - node: color: '#9FED5896' id: BrickTileWhiteCornerSw decals: - 181: 3,-18 + 174: 3,-18 - node: color: '#9FED5896' id: BrickTileWhiteInnerNw decals: - 169: 6,-14 + 162: 6,-14 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 172: 7,-12 - 173: 7,-13 - 174: 7,-14 - 175: 7,-15 - 176: 7,-16 - 177: 7,-17 + 165: 7,-12 + 166: 7,-13 + 167: 7,-14 + 168: 7,-15 + 169: 7,-16 + 170: 7,-17 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 170: 5,-14 - 171: 4,-14 + 163: 5,-14 + 164: 4,-14 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 179: 6,-18 - 180: 5,-18 - 182: 4,-18 + 172: 6,-18 + 173: 5,-18 + 175: 4,-18 - node: color: '#9FED5896' id: BrickTileWhiteLineW decals: - 168: 6,-13 - 183: 3,-17 - 184: 3,-16 + 161: 6,-13 + 176: 3,-17 + 177: 3,-16 - node: color: '#A4610647' id: CheckerNWSE decals: - 203: -13,6 - 204: -14,6 - 205: -15,6 - 206: -15,7 - 207: -14,7 - 208: -13,7 - 209: -14,8 - 210: -15,8 + 196: -13,6 + 197: -14,6 + 198: -15,6 + 199: -15,7 + 200: -14,7 + 201: -13,7 + 202: -14,8 + 203: -15,8 - node: color: '#D381C996' id: CheckerNWSE decals: - 214: 10,-19 - 215: 11,-19 - 216: 12,-19 - 217: 13,-19 - 218: 14,-19 - 219: 14,-18 - 220: 14,-17 - 221: 13,-17 - 222: 13,-18 - 223: 12,-18 - 224: 12,-17 - 225: 11,-17 - 226: 11,-18 - 227: 10,-18 - 228: 10,-17 + 207: 10,-19 + 208: 11,-19 + 209: 12,-19 + 210: 13,-19 + 211: 14,-19 + 212: 14,-18 + 213: 14,-17 + 214: 13,-17 + 215: 13,-18 + 216: 12,-18 + 217: 12,-17 + 218: 11,-17 + 219: 11,-18 + 220: 10,-18 + 221: 10,-17 - node: color: '#FFFFFFFF' id: Delivery decals: - 211: -16,8 - 212: -16,9 - 258: 7,-18 - 259: 6,-18 + 204: -16,8 + 205: -16,9 + 251: 7,-18 + 252: 6,-18 - node: color: '#DE3A3A96' id: DeliveryGreyscale decals: - 290: 16,-14 + 283: 16,-14 - node: color: '#9FED5896' id: FullTileOverlayGreyscale decals: - 188: 5,-17 - 189: 5,-16 - 190: 5,-15 - 191: 6,-16 - 192: 4,-16 + 181: 5,-17 + 182: 5,-16 + 183: 5,-15 + 184: 6,-16 + 185: 4,-16 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 239: 1,-14 - 240: 0,-14 - 241: -1,-14 + 232: 1,-14 + 233: 0,-14 + 234: -1,-14 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 331: 11,-2 + 324: 11,-2 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 236: 1,-16 - 237: 0,-16 - 238: -1,-16 + 229: 1,-16 + 230: 0,-16 + 231: -1,-16 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 332: 11,0 + 325: 11,0 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 242: -2,-15 + 235: -2,-15 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 330: 12,-1 + 323: 12,-1 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 329: 10,-1 + 322: 10,-1 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale decals: - 321: 9,0 - 322: 10,0 + 314: 9,0 + 315: 10,0 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale180 decals: - 325: 13,-2 - 326: 12,-2 + 318: 13,-2 + 319: 12,-2 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 327: 9,-2 - 328: 10,-2 + 320: 9,-2 + 321: 10,-2 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 323: 13,0 - 324: 12,0 + 316: 13,0 + 317: 12,0 - node: color: '#FFFFFFFF' id: Rock06 @@ -504,17 +534,17 @@ entities: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 244: -2,-14 + 237: -2,-14 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 243: -2,-16 + 236: -2,-16 - node: color: '#FFFFFFFF' id: WarnBox decals: - 131: -5,-3 + 124: -5,-3 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' @@ -552,93 +582,93 @@ entities: color: '#DE3A3A96' id: WarnCornerGreyscaleNW decals: - 289: 17,-14 + 282: 17,-14 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 299: 20,-20 + 292: 20,-20 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 233: 10,-19 - 298: 24,-20 + 226: 10,-19 + 291: 24,-20 - node: color: '#FFFFFFFF' id: WarnEndE decals: - 161: 1,-9 + 154: 1,-9 - node: color: '#FFFFFFFF' id: WarnEndN decals: - 163: 7,-2 + 156: 7,-2 - node: color: '#FFFFFFFF' id: WarnEndS decals: 123: -6,21 - 162: 7,-4 + 155: 7,-4 - node: color: '#FFFFFFFF' id: WarnEndW decals: - 160: 0,-9 + 153: 0,-9 - node: color: '#DE3A3A96' id: WarnFullGreyscale decals: - 359: 16,-8 - 360: 11,-8 - 361: 9,-10 - 362: 6,-10 + 352: 16,-8 + 353: 11,-8 + 354: 9,-10 + 355: 6,-10 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 165: 7,-3 - 301: 20,-18 + 158: 7,-3 + 294: 20,-18 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 159: 15,-14 - 356: 10,-8 - 357: 15,-8 + 152: 15,-14 + 349: 10,-8 + 350: 15,-8 - node: color: '#DE3A3A96' id: WarnLineGreyscaleN decals: - 358: 14,-7 - 363: 7,-7 - 364: 6,-7 - 365: 5,-7 + 351: 14,-7 + 356: 7,-7 + 357: 6,-7 + 358: 5,-7 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 353: 9,-9 - 354: 6,-9 + 346: 9,-9 + 347: 6,-9 - node: color: '#DE3A3A96' id: WarnLineGreyscaleW decals: - 355: 12,-8 + 348: 12,-8 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleW decals: - 186: 3,-15 - 187: 6,-12 + 179: 3,-15 + 180: 6,-12 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 229: 14,-19 - 230: 13,-19 - 231: 12,-19 - 232: 11,-19 + 222: 14,-19 + 223: 13,-19 + 224: 12,-19 + 225: 11,-19 - node: color: '#FFFFFFFF' id: WarnLineS @@ -672,10 +702,10 @@ entities: 120: -9,-22 121: -9,-23 122: -9,-24 - 164: 7,-3 - 234: 10,-18 - 235: 10,-17 - 300: 24,-18 + 157: 7,-3 + 227: 10,-18 + 228: 10,-17 + 293: 24,-18 - node: color: '#FFFFFFFF' id: WarningLine @@ -715,24 +745,24 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 422: 5,-6 + 363: 5,-6 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 420: 0,-6 - 421: -1,-6 - 423: 4,-6 - 424: 3,-6 - 425: 2,-6 - 426: 1,-6 + 361: 0,-6 + 362: -1,-6 + 364: 4,-6 + 365: 3,-6 + 366: 2,-6 + 367: 1,-6 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: - 344: 5,-9 - 345: 5,-8 - 367: 5,-7 + 337: 5,-9 + 338: 5,-8 + 360: 5,-7 - node: color: '#FFFFFFFF' id: bushsnowa1 @@ -757,6 +787,11 @@ entities: decals: 72: 0.2452774,15.588417 74: -0.9488945,8.937782 + - node: + color: '#AB0000FF' + id: d + decals: + 374: 21.412256,2.9944348 - node: color: '#FFFFFFFF' id: grasssnowa1 @@ -766,6 +801,7 @@ entities: 47: -2.8426914,5.7681084 84: 16.072964,17.452217 85: -4.644718,19.141476 + 370: 26.896631,2.9944348 - node: color: '#FFFFFFFF' id: grasssnowa2 @@ -856,6 +892,42 @@ entities: 66: -1.9470882,14.409473 77: 6.122473,18.001226 80: 18.166714,4.631343 + - node: + color: '#AB0000FF' + id: i + decals: + 375: 21.677881,2.8381848 + - node: + color: '#AB0000FF' + id: k + decals: + 380: 23.427881,2.8069348 + - node: + color: '#AB0000FF' + id: n + decals: + 373: 20.943506,2.9006848 + 381: 22.959131,2.9631848 + - node: + color: '#AB0000FF' + id: r + decals: + 376: 22.099756,2.7913098 + - node: + color: '#AB0000FF' + id: s + decals: + 371: 20.224756,2.9788098 + - node: + color: '#AB0000FF' + id: shortline + decals: + 377: 22.552881,2.8381848 + - node: + color: '#AB0000FF' + id: y + decals: + 372: 20.568506,2.9319348 type: DecalGrid - version: 2 data: @@ -2010,6 +2082,4448 @@ entities: - pos: 21.5,-4.5 parent: 104 type: Transform +- proto: AsteroidRock + entities: + - uid: 19 + components: + - pos: 16.5,1.5 + parent: 104 + type: Transform + - uid: 20 + components: + - pos: -3.5,-10.5 + parent: 104 + type: Transform + - uid: 216 + components: + - pos: -4.5,-9.5 + parent: 104 + type: Transform + - uid: 238 + components: + - pos: -4.5,-13.5 + parent: 104 + type: Transform + - uid: 243 + components: + - pos: -4.5,-6.5 + parent: 104 + type: Transform + - uid: 244 + components: + - pos: -4.5,-8.5 + parent: 104 + type: Transform + - uid: 246 + components: + - pos: -3.5,-8.5 + parent: 104 + type: Transform + - uid: 247 + components: + - pos: -4.5,-12.5 + parent: 104 + type: Transform + - uid: 248 + components: + - pos: -4.5,-7.5 + parent: 104 + type: Transform + - uid: 249 + components: + - pos: -8.5,9.5 + parent: 104 + type: Transform + - uid: 250 + components: + - pos: 0.5,-10.5 + parent: 104 + type: Transform + - uid: 251 + components: + - pos: 15.5,1.5 + parent: 104 + type: Transform + - uid: 255 + components: + - pos: -3.5,-7.5 + parent: 104 + type: Transform + - uid: 257 + components: + - pos: 15.5,0.5 + parent: 104 + type: Transform + - uid: 259 + components: + - pos: -4.5,-10.5 + parent: 104 + type: Transform + - uid: 263 + components: + - pos: -4.5,-11.5 + parent: 104 + type: Transform + - uid: 277 + components: + - pos: -10.5,22.5 + parent: 104 + type: Transform + - uid: 292 + components: + - pos: -9.5,21.5 + parent: 104 + type: Transform + - uid: 294 + components: + - pos: -10.5,21.5 + parent: 104 + type: Transform + - uid: 295 + components: + - pos: -11.5,22.5 + parent: 104 + type: Transform + - uid: 296 + components: + - pos: -20.5,9.5 + parent: 104 + type: Transform + - uid: 358 + components: + - pos: -22.5,21.5 + parent: 104 + type: Transform + - uid: 359 + components: + - pos: -22.5,15.5 + parent: 104 + type: Transform + - uid: 360 + components: + - pos: -22.5,16.5 + parent: 104 + type: Transform + - uid: 361 + components: + - pos: -21.5,17.5 + parent: 104 + type: Transform + - uid: 362 + components: + - pos: -21.5,16.5 + parent: 104 + type: Transform + - uid: 363 + components: + - pos: -21.5,15.5 + parent: 104 + type: Transform + - uid: 364 + components: + - pos: -21.5,14.5 + parent: 104 + type: Transform + - uid: 365 + components: + - pos: -22.5,14.5 + parent: 104 + type: Transform + - uid: 366 + components: + - pos: -21.5,13.5 + parent: 104 + type: Transform + - uid: 367 + components: + - pos: -21.5,20.5 + parent: 104 + type: Transform + - uid: 368 + components: + - pos: -21.5,21.5 + parent: 104 + type: Transform + - uid: 369 + components: + - pos: -20.5,21.5 + parent: 104 + type: Transform + - uid: 370 + components: + - pos: -19.5,21.5 + parent: 104 + type: Transform + - uid: 371 + components: + - pos: -20.5,22.5 + parent: 104 + type: Transform + - uid: 372 + components: + - pos: -18.5,21.5 + parent: 104 + type: Transform + - uid: 373 + components: + - pos: -20.5,8.5 + parent: 104 + type: Transform + - uid: 374 + components: + - pos: -22.5,22.5 + parent: 104 + type: Transform + - uid: 375 + components: + - pos: -21.5,22.5 + parent: 104 + type: Transform + - uid: 376 + components: + - pos: -23.5,22.5 + parent: 104 + type: Transform + - uid: 377 + components: + - pos: -20.5,15.5 + parent: 104 + type: Transform + - uid: 401 + components: + - pos: -20.5,20.5 + parent: 104 + type: Transform + - uid: 402 + components: + - pos: -20.5,19.5 + parent: 104 + type: Transform + - uid: 403 + components: + - pos: -20.5,18.5 + parent: 104 + type: Transform + - uid: 404 + components: + - pos: -20.5,17.5 + parent: 104 + type: Transform + - uid: 405 + components: + - pos: -20.5,16.5 + parent: 104 + type: Transform + - uid: 406 + components: + - pos: -20.5,14.5 + parent: 104 + type: Transform + - uid: 407 + components: + - pos: -24.5,23.5 + parent: 104 + type: Transform + - uid: 408 + components: + - pos: -24.5,22.5 + parent: 104 + type: Transform + - uid: 409 + components: + - pos: -20.5,10.5 + parent: 104 + type: Transform + - uid: 410 + components: + - pos: -9.5,22.5 + parent: 104 + type: Transform + - uid: 415 + components: + - pos: -18.5,23.5 + parent: 104 + type: Transform + - uid: 417 + components: + - pos: -16.5,6.5 + parent: 104 + type: Transform + - uid: 419 + components: + - pos: -7.5,21.5 + parent: 104 + type: Transform + - uid: 420 + components: + - pos: -8.5,21.5 + parent: 104 + type: Transform + - uid: 421 + components: + - pos: -10.5,23.5 + parent: 104 + type: Transform + - uid: 422 + components: + - pos: -11.5,23.5 + parent: 104 + type: Transform + - uid: 423 + components: + - pos: -19.5,22.5 + parent: 104 + type: Transform + - uid: 425 + components: + - pos: -18.5,22.5 + parent: 104 + type: Transform + - uid: 426 + components: + - pos: -7.5,12.5 + parent: 104 + type: Transform + - uid: 455 + components: + - pos: 1.5,-19.5 + parent: 104 + type: Transform + - uid: 469 + components: + - pos: -8.5,10.5 + parent: 104 + type: Transform + - uid: 471 + components: + - pos: -9.5,10.5 + parent: 104 + type: Transform + - uid: 473 + components: + - pos: -8.5,11.5 + parent: 104 + type: Transform + - uid: 475 + components: + - pos: -9.5,11.5 + parent: 104 + type: Transform + - uid: 477 + components: + - pos: 16.5,0.5 + parent: 104 + type: Transform + - uid: 478 + components: + - pos: -6.5,12.5 + parent: 104 + type: Transform + - uid: 479 + components: + - pos: -2.5,-18.5 + parent: 104 + type: Transform + - uid: 480 + components: + - pos: -2.5,-19.5 + parent: 104 + type: Transform + - uid: 483 + components: + - pos: -2.5,-10.5 + parent: 104 + type: Transform + - uid: 485 + components: + - pos: -2.5,-6.5 + parent: 104 + type: Transform + - uid: 488 + components: + - pos: -2.5,-7.5 + parent: 104 + type: Transform + - uid: 489 + components: + - pos: -2.5,-8.5 + parent: 104 + type: Transform + - uid: 492 + components: + - pos: -3.5,-20.5 + parent: 104 + type: Transform + - uid: 502 + components: + - pos: -3.5,-18.5 + parent: 104 + type: Transform + - uid: 504 + components: + - pos: -2.5,-9.5 + parent: 104 + type: Transform + - uid: 505 + components: + - pos: -3.5,-19.5 + parent: 104 + type: Transform + - uid: 506 + components: + - pos: 17.5,-1.5 + parent: 104 + type: Transform + - uid: 509 + components: + - pos: -4.5,-19.5 + parent: 104 + type: Transform + - uid: 511 + components: + - pos: -4.5,-18.5 + parent: 104 + type: Transform + - uid: 512 + components: + - pos: -9.5,12.5 + parent: 104 + type: Transform + - uid: 513 + components: + - pos: -3.5,-9.5 + parent: 104 + type: Transform + - uid: 521 + components: + - pos: -4.5,-14.5 + parent: 104 + type: Transform + - uid: 522 + components: + - pos: -1.5,19.5 + parent: 104 + type: Transform + - uid: 524 + components: + - pos: -0.5,19.5 + parent: 104 + type: Transform + - uid: 525 + components: + - pos: 9.5,20.5 + parent: 104 + type: Transform + - uid: 529 + components: + - pos: 10.5,19.5 + parent: 104 + type: Transform + - uid: 531 + components: + - pos: 11.5,19.5 + parent: 104 + type: Transform + - uid: 532 + components: + - pos: 12.5,19.5 + parent: 104 + type: Transform + - uid: 533 + components: + - pos: 16.5,19.5 + parent: 104 + type: Transform + - uid: 534 + components: + - pos: 17.5,19.5 + parent: 104 + type: Transform + - uid: 535 + components: + - pos: 18.5,19.5 + parent: 104 + type: Transform + - uid: 536 + components: + - pos: 18.5,11.5 + parent: 104 + type: Transform + - uid: 537 + components: + - pos: 18.5,12.5 + parent: 104 + type: Transform + - uid: 538 + components: + - pos: 18.5,15.5 + parent: 104 + type: Transform + - uid: 539 + components: + - pos: 18.5,18.5 + parent: 104 + type: Transform + - uid: 543 + components: + - pos: 26.5,9.5 + parent: 104 + type: Transform + - uid: 546 + components: + - pos: 28.5,3.5 + parent: 104 + type: Transform + - uid: 547 + components: + - pos: 29.5,3.5 + parent: 104 + type: Transform + - uid: 548 + components: + - pos: 30.5,3.5 + parent: 104 + type: Transform + - uid: 549 + components: + - pos: 22.5,-22.5 + parent: 104 + type: Transform + - uid: 550 + components: + - pos: 31.5,-20.5 + parent: 104 + type: Transform + - uid: 551 + components: + - pos: 31.5,-19.5 + parent: 104 + type: Transform + - uid: 552 + components: + - pos: 31.5,-18.5 + parent: 104 + type: Transform + - uid: 553 + components: + - pos: 31.5,-17.5 + parent: 104 + type: Transform + - uid: 554 + components: + - pos: 31.5,-16.5 + parent: 104 + type: Transform + - uid: 555 + components: + - pos: 31.5,-15.5 + parent: 104 + type: Transform + - uid: 556 + components: + - pos: 31.5,-14.5 + parent: 104 + type: Transform + - uid: 557 + components: + - pos: 31.5,-13.5 + parent: 104 + type: Transform + - uid: 558 + components: + - pos: 31.5,-12.5 + parent: 104 + type: Transform + - uid: 559 + components: + - pos: 31.5,-7.5 + parent: 104 + type: Transform + - uid: 560 + components: + - pos: 31.5,-6.5 + parent: 104 + type: Transform + - uid: 561 + components: + - pos: 31.5,-5.5 + parent: 104 + type: Transform + - uid: 562 + components: + - pos: 31.5,-4.5 + parent: 104 + type: Transform + - uid: 563 + components: + - pos: 31.5,-3.5 + parent: 104 + type: Transform + - uid: 564 + components: + - pos: 31.5,-2.5 + parent: 104 + type: Transform + - uid: 565 + components: + - pos: 31.5,-1.5 + parent: 104 + type: Transform + - uid: 566 + components: + - pos: 31.5,-0.5 + parent: 104 + type: Transform + - uid: 567 + components: + - pos: 31.5,0.5 + parent: 104 + type: Transform + - uid: 568 + components: + - pos: 31.5,1.5 + parent: 104 + type: Transform + - uid: 569 + components: + - pos: 17.5,-22.5 + parent: 104 + type: Transform + - uid: 570 + components: + - pos: 18.5,-22.5 + parent: 104 + type: Transform + - uid: 571 + components: + - pos: 19.5,-22.5 + parent: 104 + type: Transform + - uid: 572 + components: + - pos: 20.5,-22.5 + parent: 104 + type: Transform + - uid: 573 + components: + - pos: 21.5,-22.5 + parent: 104 + type: Transform + - uid: 574 + components: + - pos: -5.5,-22.5 + parent: 104 + type: Transform + - uid: 575 + components: + - pos: 23.5,-22.5 + parent: 104 + type: Transform + - uid: 576 + components: + - pos: 24.5,-22.5 + parent: 104 + type: Transform + - uid: 577 + components: + - pos: 25.5,-22.5 + parent: 104 + type: Transform + - uid: 578 + components: + - pos: 26.5,-22.5 + parent: 104 + type: Transform + - uid: 579 + components: + - pos: 27.5,-22.5 + parent: 104 + type: Transform + - uid: 580 + components: + - pos: 28.5,-22.5 + parent: 104 + type: Transform + - uid: 581 + components: + - pos: -4.5,-20.5 + parent: 104 + type: Transform + - uid: 582 + components: + - pos: -4.5,-15.5 + parent: 104 + type: Transform + - uid: 586 + components: + - pos: 4.5,-22.5 + parent: 104 + type: Transform + - uid: 587 + components: + - pos: 5.5,-22.5 + parent: 104 + type: Transform + - uid: 588 + components: + - pos: 6.5,-22.5 + parent: 104 + type: Transform + - uid: 589 + components: + - pos: 7.5,-22.5 + parent: 104 + type: Transform + - uid: 590 + components: + - pos: 8.5,-22.5 + parent: 104 + type: Transform + - uid: 595 + components: + - pos: -5.5,-21.5 + parent: 104 + type: Transform + - uid: 596 + components: + - pos: -5.5,-20.5 + parent: 104 + type: Transform + - uid: 597 + components: + - pos: -5.5,-19.5 + parent: 104 + type: Transform + - uid: 598 + components: + - pos: -5.5,-18.5 + parent: 104 + type: Transform + - uid: 599 + components: + - pos: -5.5,-17.5 + parent: 104 + type: Transform + - uid: 600 + components: + - pos: -5.5,-16.5 + parent: 104 + type: Transform + - uid: 601 + components: + - pos: -5.5,-15.5 + parent: 104 + type: Transform + - uid: 602 + components: + - pos: -5.5,-14.5 + parent: 104 + type: Transform + - uid: 603 + components: + - pos: -5.5,-13.5 + parent: 104 + type: Transform + - uid: 604 + components: + - pos: -5.5,-12.5 + parent: 104 + type: Transform + - uid: 605 + components: + - pos: -5.5,-11.5 + parent: 104 + type: Transform + - uid: 606 + components: + - pos: -5.5,-10.5 + parent: 104 + type: Transform + - uid: 607 + components: + - pos: -5.5,-9.5 + parent: 104 + type: Transform + - uid: 608 + components: + - pos: -5.5,-8.5 + parent: 104 + type: Transform + - uid: 609 + components: + - pos: -5.5,-7.5 + parent: 104 + type: Transform + - uid: 610 + components: + - pos: -14.5,16.5 + parent: 104 + type: Transform + - uid: 614 + components: + - pos: -16.5,15.5 + parent: 104 + type: Transform + - uid: 615 + components: + - pos: -10.5,9.5 + parent: 104 + type: Transform + - uid: 618 + components: + - pos: -8.5,12.5 + parent: 104 + type: Transform + - uid: 621 + components: + - pos: -9.5,9.5 + parent: 104 + type: Transform + - uid: 622 + components: + - pos: -10.5,10.5 + parent: 104 + type: Transform + - uid: 632 + components: + - pos: -10.5,12.5 + parent: 104 + type: Transform + - uid: 637 + components: + - pos: -10.5,11.5 + parent: 104 + type: Transform + - uid: 640 + components: + - pos: -16.5,5.5 + parent: 104 + type: Transform + - uid: 648 + components: + - pos: -11.5,13.5 + parent: 104 + type: Transform + - uid: 670 + components: + - pos: -18.5,10.5 + parent: 104 + type: Transform + - uid: 672 + components: + - pos: -16.5,16.5 + parent: 104 + type: Transform + - uid: 673 + components: + - pos: -11.5,12.5 + parent: 104 + type: Transform + - uid: 674 + components: + - pos: -19.5,15.5 + parent: 104 + type: Transform + - uid: 676 + components: + - pos: -19.5,16.5 + parent: 104 + type: Transform + - uid: 677 + components: + - pos: -18.5,11.5 + parent: 104 + type: Transform + - uid: 678 + components: + - pos: -14.5,11.5 + parent: 104 + type: Transform + - uid: 679 + components: + - pos: -14.5,17.5 + parent: 104 + type: Transform + - uid: 680 + components: + - pos: -14.5,18.5 + parent: 104 + type: Transform + - uid: 681 + components: + - pos: -15.5,14.5 + parent: 104 + type: Transform + - uid: 682 + components: + - pos: -24.5,25.5 + parent: 104 + type: Transform + - uid: 684 + components: + - pos: -17.5,13.5 + parent: 104 + type: Transform + - uid: 685 + components: + - pos: -15.5,16.5 + parent: 104 + type: Transform + - uid: 686 + components: + - pos: -12.5,12.5 + parent: 104 + type: Transform + - uid: 687 + components: + - pos: -12.5,11.5 + parent: 104 + type: Transform + - uid: 688 + components: + - pos: -11.5,14.5 + parent: 104 + type: Transform + - uid: 689 + components: + - pos: -15.5,15.5 + parent: 104 + type: Transform + - uid: 690 + components: + - pos: -14.5,14.5 + parent: 104 + type: Transform + - uid: 691 + components: + - pos: -19.5,14.5 + parent: 104 + type: Transform + - uid: 692 + components: + - pos: -13.5,16.5 + parent: 104 + type: Transform + - uid: 693 + components: + - pos: -17.5,15.5 + parent: 104 + type: Transform + - uid: 694 + components: + - pos: -11.5,9.5 + parent: 104 + type: Transform + - uid: 695 + components: + - pos: -20.5,23.5 + parent: 104 + type: Transform + - uid: 699 + components: + - pos: -18.5,8.5 + parent: 104 + type: Transform + - uid: 700 + components: + - pos: -18.5,9.5 + parent: 104 + type: Transform + - uid: 701 + components: + - pos: -13.5,12.5 + parent: 104 + type: Transform + - uid: 702 + components: + - pos: -13.5,17.5 + parent: 104 + type: Transform + - uid: 703 + components: + - pos: -13.5,18.5 + parent: 104 + type: Transform + - uid: 704 + components: + - pos: -15.5,18.5 + parent: 104 + type: Transform + - uid: 705 + components: + - pos: -17.5,14.5 + parent: 104 + type: Transform + - uid: 706 + components: + - pos: -11.5,11.5 + parent: 104 + type: Transform + - uid: 708 + components: + - pos: -17.5,11.5 + parent: 104 + type: Transform + - uid: 709 + components: + - pos: -17.5,16.5 + parent: 104 + type: Transform + - uid: 711 + components: + - pos: -17.5,10.5 + parent: 104 + type: Transform + - uid: 712 + components: + - pos: -15.5,17.5 + parent: 104 + type: Transform + - uid: 714 + components: + - pos: -11.5,17.5 + parent: 104 + type: Transform + - uid: 716 + components: + - pos: -13.5,13.5 + parent: 104 + type: Transform + - uid: 717 + components: + - pos: -13.5,14.5 + parent: 104 + type: Transform + - uid: 718 + components: + - pos: -18.5,14.5 + parent: 104 + type: Transform + - uid: 719 + components: + - pos: -18.5,15.5 + parent: 104 + type: Transform + - uid: 720 + components: + - pos: -18.5,16.5 + parent: 104 + type: Transform + - uid: 721 + components: + - pos: -17.5,8.5 + parent: 104 + type: Transform + - uid: 722 + components: + - pos: -16.5,13.5 + parent: 104 + type: Transform + - uid: 723 + components: + - pos: -16.5,14.5 + parent: 104 + type: Transform + - uid: 724 + components: + - pos: -12.5,17.5 + parent: 104 + type: Transform + - uid: 725 + components: + - pos: -12.5,18.5 + parent: 104 + type: Transform + - uid: 726 + components: + - pos: -14.5,12.5 + parent: 104 + type: Transform + - uid: 728 + components: + - pos: -14.5,13.5 + parent: 104 + type: Transform + - uid: 729 + components: + - pos: -18.5,17.5 + parent: 104 + type: Transform + - uid: 733 + components: + - pos: -18.5,18.5 + parent: 104 + type: Transform + - uid: 734 + components: + - pos: -18.5,19.5 + parent: 104 + type: Transform + - uid: 735 + components: + - pos: -12.5,13.5 + parent: 104 + type: Transform + - uid: 740 + components: + - pos: -12.5,15.5 + parent: 104 + type: Transform + - uid: 741 + components: + - pos: -19.5,17.5 + parent: 104 + type: Transform + - uid: 745 + components: + - pos: -19.5,18.5 + parent: 104 + type: Transform + - uid: 746 + components: + - pos: -19.5,19.5 + parent: 104 + type: Transform + - uid: 747 + components: + - pos: -16.5,17.5 + parent: 104 + type: Transform + - uid: 752 + components: + - pos: -16.5,18.5 + parent: 104 + type: Transform + - uid: 753 + components: + - pos: -15.5,11.5 + parent: 104 + type: Transform + - uid: 755 + components: + - pos: -15.5,12.5 + parent: 104 + type: Transform + - uid: 756 + components: + - pos: -12.5,14.5 + parent: 104 + type: Transform + - uid: 757 + components: + - pos: -16.5,12.5 + parent: 104 + type: Transform + - uid: 758 + components: + - pos: -13.5,15.5 + parent: 104 + type: Transform + - uid: 759 + components: + - pos: -19.5,9.5 + parent: 104 + type: Transform + - uid: 762 + components: + - pos: -17.5,9.5 + parent: 104 + type: Transform + - uid: 763 + components: + - pos: -17.5,17.5 + parent: 104 + type: Transform + - uid: 764 + components: + - pos: -17.5,18.5 + parent: 104 + type: Transform + - uid: 765 + components: + - pos: -16.5,11.5 + parent: 104 + type: Transform + - uid: 768 + components: + - pos: -19.5,8.5 + parent: 104 + type: Transform + - uid: 771 + components: + - pos: -6.5,13.5 + parent: 104 + type: Transform + - uid: 774 + components: + - pos: -10.5,18.5 + parent: 104 + type: Transform + - uid: 775 + components: + - pos: -10.5,17.5 + parent: 104 + type: Transform + - uid: 776 + components: + - pos: -10.5,16.5 + parent: 104 + type: Transform + - uid: 777 + components: + - pos: -10.5,15.5 + parent: 104 + type: Transform + - uid: 778 + components: + - pos: -10.5,14.5 + parent: 104 + type: Transform + - uid: 779 + components: + - pos: -10.5,13.5 + parent: 104 + type: Transform + - uid: 780 + components: + - pos: -9.5,19.5 + parent: 104 + type: Transform + - uid: 781 + components: + - pos: -9.5,18.5 + parent: 104 + type: Transform + - uid: 782 + components: + - pos: -9.5,17.5 + parent: 104 + type: Transform + - uid: 783 + components: + - pos: -9.5,16.5 + parent: 104 + type: Transform + - uid: 784 + components: + - pos: -9.5,15.5 + parent: 104 + type: Transform + - uid: 785 + components: + - pos: -9.5,14.5 + parent: 104 + type: Transform + - uid: 786 + components: + - pos: -9.5,13.5 + parent: 104 + type: Transform + - uid: 787 + components: + - pos: -8.5,19.5 + parent: 104 + type: Transform + - uid: 788 + components: + - pos: -8.5,18.5 + parent: 104 + type: Transform + - uid: 789 + components: + - pos: -8.5,17.5 + parent: 104 + type: Transform + - uid: 790 + components: + - pos: -8.5,15.5 + parent: 104 + type: Transform + - uid: 791 + components: + - pos: -8.5,14.5 + parent: 104 + type: Transform + - uid: 792 + components: + - pos: -8.5,13.5 + parent: 104 + type: Transform + - uid: 793 + components: + - pos: -7.5,19.5 + parent: 104 + type: Transform + - uid: 794 + components: + - pos: -7.5,18.5 + parent: 104 + type: Transform + - uid: 795 + components: + - pos: -7.5,15.5 + parent: 104 + type: Transform + - uid: 796 + components: + - pos: -7.5,14.5 + parent: 104 + type: Transform + - uid: 797 + components: + - pos: -7.5,13.5 + parent: 104 + type: Transform + - uid: 798 + components: + - pos: -15.5,13.5 + parent: 104 + type: Transform + - uid: 801 + components: + - pos: -12.5,16.5 + parent: 104 + type: Transform + - uid: 802 + components: + - pos: -14.5,15.5 + parent: 104 + type: Transform + - uid: 803 + components: + - pos: -19.5,23.5 + parent: 104 + type: Transform + - uid: 804 + components: + - pos: -24.5,24.5 + parent: 104 + type: Transform + - uid: 805 + components: + - pos: -19.5,10.5 + parent: 104 + type: Transform + - uid: 806 + components: + - pos: -17.5,12.5 + parent: 104 + type: Transform + - uid: 807 + components: + - pos: -11.5,16.5 + parent: 104 + type: Transform + - uid: 808 + components: + - pos: -11.5,15.5 + parent: 104 + type: Transform + - uid: 809 + components: + - pos: -13.5,11.5 + parent: 104 + type: Transform + - uid: 810 + components: + - pos: -19.5,20.5 + parent: 104 + type: Transform + - uid: 1020 + components: + - pos: -18.5,20.5 + parent: 104 + type: Transform + - uid: 1021 + components: + - pos: -10.5,20.5 + parent: 104 + type: Transform + - uid: 1027 + components: + - pos: -9.5,20.5 + parent: 104 + type: Transform + - uid: 1028 + components: + - pos: -8.5,20.5 + parent: 104 + type: Transform + - uid: 1029 + components: + - pos: -7.5,20.5 + parent: 104 + type: Transform + - uid: 1030 + components: + - pos: -2.5,20.5 + parent: 104 + type: Transform + - uid: 1031 + components: + - pos: -1.5,20.5 + parent: 104 + type: Transform + - uid: 1032 + components: + - pos: -0.5,20.5 + parent: 104 + type: Transform + - uid: 1033 + components: + - pos: 9.5,22.5 + parent: 104 + type: Transform + - uid: 1036 + components: + - pos: 10.5,20.5 + parent: 104 + type: Transform + - uid: 1041 + components: + - pos: 11.5,20.5 + parent: 104 + type: Transform + - uid: 1042 + components: + - pos: 12.5,20.5 + parent: 104 + type: Transform + - uid: 1043 + components: + - pos: 13.5,20.5 + parent: 104 + type: Transform + - uid: 1044 + components: + - pos: 16.5,20.5 + parent: 104 + type: Transform + - uid: 1045 + components: + - pos: 17.5,20.5 + parent: 104 + type: Transform + - uid: 1046 + components: + - pos: 18.5,20.5 + parent: 104 + type: Transform + - uid: 1047 + components: + - pos: 19.5,20.5 + parent: 104 + type: Transform + - uid: 1048 + components: + - pos: 19.5,19.5 + parent: 104 + type: Transform + - uid: 1049 + components: + - pos: 19.5,18.5 + parent: 104 + type: Transform + - uid: 1050 + components: + - pos: 19.5,16.5 + parent: 104 + type: Transform + - uid: 1051 + components: + - pos: 19.5,15.5 + parent: 104 + type: Transform + - uid: 1052 + components: + - pos: 19.5,14.5 + parent: 104 + type: Transform + - uid: 1053 + components: + - pos: 19.5,12.5 + parent: 104 + type: Transform + - uid: 1054 + components: + - pos: 19.5,11.5 + parent: 104 + type: Transform + - uid: 1055 + components: + - pos: 19.5,10.5 + parent: 104 + type: Transform + - uid: 1056 + components: + - pos: -11.5,20.5 + parent: 104 + type: Transform + - uid: 1057 + components: + - pos: 15.5,3.5 + parent: 104 + type: Transform + - uid: 1058 + components: + - pos: 22.5,4.5 + parent: 104 + type: Transform + - uid: 1059 + components: + - pos: 23.5,4.5 + parent: 104 + type: Transform + - uid: 1060 + components: + - pos: 24.5,4.5 + parent: 104 + type: Transform + - uid: 1064 + components: + - pos: 28.5,4.5 + parent: 104 + type: Transform + - uid: 1065 + components: + - pos: 29.5,4.5 + parent: 104 + type: Transform + - uid: 1066 + components: + - pos: 30.5,4.5 + parent: 104 + type: Transform + - uid: 1067 + components: + - pos: 32.5,0.5 + parent: 104 + type: Transform + - uid: 1068 + components: + - pos: 32.5,-0.5 + parent: 104 + type: Transform + - uid: 1069 + components: + - pos: 32.5,-3.5 + parent: 104 + type: Transform + - uid: 1070 + components: + - pos: 32.5,-12.5 + parent: 104 + type: Transform + - uid: 1071 + components: + - pos: 32.5,-13.5 + parent: 104 + type: Transform + - uid: 1072 + components: + - pos: 32.5,-14.5 + parent: 104 + type: Transform + - uid: 1073 + components: + - pos: 32.5,-15.5 + parent: 104 + type: Transform + - uid: 1074 + components: + - pos: 32.5,-16.5 + parent: 104 + type: Transform + - uid: 1075 + components: + - pos: 32.5,-17.5 + parent: 104 + type: Transform + - uid: 1076 + components: + - pos: 32.5,-18.5 + parent: 104 + type: Transform + - uid: 1077 + components: + - pos: 32.5,-19.5 + parent: 104 + type: Transform + - uid: 1078 + components: + - pos: 32.5,-20.5 + parent: 104 + type: Transform + - uid: 1079 + components: + - pos: 32.5,-21.5 + parent: 104 + type: Transform + - uid: 1083 + components: + - pos: -4.5,-16.5 + parent: 104 + type: Transform + - uid: 1084 + components: + - pos: -4.5,-21.5 + parent: 104 + type: Transform + - uid: 1085 + components: + - pos: 28.5,-23.5 + parent: 104 + type: Transform + - uid: 1092 + components: + - pos: 27.5,-23.5 + parent: 104 + type: Transform + - uid: 1093 + components: + - pos: 26.5,-23.5 + parent: 104 + type: Transform + - uid: 1094 + components: + - pos: 25.5,-23.5 + parent: 104 + type: Transform + - uid: 1095 + components: + - pos: 24.5,-23.5 + parent: 104 + type: Transform + - uid: 1096 + components: + - pos: 23.5,-23.5 + parent: 104 + type: Transform + - uid: 1097 + components: + - pos: 22.5,-23.5 + parent: 104 + type: Transform + - uid: 1098 + components: + - pos: 21.5,-23.5 + parent: 104 + type: Transform + - uid: 1099 + components: + - pos: 20.5,-23.5 + parent: 104 + type: Transform + - uid: 1100 + components: + - pos: 19.5,-23.5 + parent: 104 + type: Transform + - uid: 1101 + components: + - pos: 18.5,-23.5 + parent: 104 + type: Transform + - uid: 1105 + components: + - pos: 8.5,-23.5 + parent: 104 + type: Transform + - uid: 1106 + components: + - pos: 7.5,-23.5 + parent: 104 + type: Transform + - uid: 1107 + components: + - pos: 6.5,-23.5 + parent: 104 + type: Transform + - uid: 1108 + components: + - pos: 5.5,-23.5 + parent: 104 + type: Transform + - uid: 1109 + components: + - pos: -23.5,23.5 + parent: 104 + type: Transform + - uid: 1155 + components: + - pos: -23.5,24.5 + parent: 104 + type: Transform + - uid: 1156 + components: + - pos: -23.5,25.5 + parent: 104 + type: Transform + - uid: 1157 + components: + - pos: -22.5,32.5 + parent: 104 + type: Transform + - uid: 1158 + components: + - pos: -23.5,30.5 + parent: 104 + type: Transform + - uid: 1160 + components: + - pos: -23.5,31.5 + parent: 104 + type: Transform + - uid: 1161 + components: + - pos: -22.5,23.5 + parent: 104 + type: Transform + - uid: 1162 + components: + - pos: -22.5,24.5 + parent: 104 + type: Transform + - uid: 1163 + components: + - pos: -22.5,25.5 + parent: 104 + type: Transform + - uid: 1164 + components: + - pos: -21.5,26.5 + parent: 104 + type: Transform + - uid: 1165 + components: + - pos: -22.5,30.5 + parent: 104 + type: Transform + - uid: 1166 + components: + - pos: -21.5,30.5 + parent: 104 + type: Transform + - uid: 1167 + components: + - pos: -24.5,31.5 + parent: 104 + type: Transform + - uid: 1168 + components: + - pos: -23.5,20.5 + parent: 104 + type: Transform + - uid: 1169 + components: + - pos: -24.5,21.5 + parent: 104 + type: Transform + - uid: 1170 + components: + - pos: -22.5,31.5 + parent: 104 + type: Transform + - uid: 1171 + components: + - pos: -25.5,30.5 + parent: 104 + type: Transform + - uid: 1172 + components: + - pos: -25.5,31.5 + parent: 104 + type: Transform + - uid: 1173 + components: + - pos: -25.5,32.5 + parent: 104 + type: Transform + - uid: 1174 + components: + - pos: -23.5,21.5 + parent: 104 + type: Transform + - uid: 1175 + components: + - pos: -23.5,29.5 + parent: 104 + type: Transform + - uid: 1176 + components: + - pos: -22.5,20.5 + parent: 104 + type: Transform + - uid: 1177 + components: + - pos: -23.5,15.5 + parent: 104 + type: Transform + - uid: 1178 + components: + - pos: -23.5,13.5 + parent: 104 + type: Transform + - uid: 1179 + components: + - pos: -22.5,13.5 + parent: 104 + type: Transform + - uid: 1180 + components: + - pos: -11.5,10.5 + parent: 104 + type: Transform + - uid: 1224 + components: + - pos: -23.5,14.5 + parent: 104 + type: Transform + - uid: 1250 + components: + - pos: 1.5,-10.5 + parent: 104 + type: Transform + - uid: 1390 + components: + - pos: -0.5,-10.5 + parent: 104 + type: Transform + - uid: 1391 + components: + - pos: -23.5,28.5 + parent: 104 + type: Transform + - uid: 1392 + components: + - pos: -24.5,30.5 + parent: 104 + type: Transform + - uid: 1393 + components: + - pos: -23.5,32.5 + parent: 104 + type: Transform + - uid: 1394 + components: + - pos: -22.5,26.5 + parent: 104 + type: Transform + - uid: 1395 + components: + - pos: -23.5,26.5 + parent: 104 + type: Transform + - uid: 1396 + components: + - pos: -24.5,32.5 + parent: 104 + type: Transform + - uid: 1397 + components: + - pos: -23.5,27.5 + parent: 104 + type: Transform + - uid: 1398 + components: + - pos: -22.5,28.5 + parent: 104 + type: Transform + - uid: 1399 + components: + - pos: -21.5,29.5 + parent: 104 + type: Transform + - uid: 1400 + components: + - pos: -22.5,29.5 + parent: 104 + type: Transform + - uid: 1401 + components: + - pos: -22.5,27.5 + parent: 104 + type: Transform + - uid: 1402 + components: + - pos: -21.5,27.5 + parent: 104 + type: Transform + - uid: 1403 + components: + - pos: -21.5,28.5 + parent: 104 + type: Transform + - uid: 1404 + components: + - pos: -21.5,25.5 + parent: 104 + type: Transform + - uid: 1405 + components: + - pos: -21.5,24.5 + parent: 104 + type: Transform + - uid: 1406 + components: + - pos: -21.5,23.5 + parent: 104 + type: Transform + - uid: 1407 + components: + - pos: 6.5,-24.5 + parent: 104 + type: Transform + - uid: 1408 + components: + - pos: 7.5,-24.5 + parent: 104 + type: Transform + - uid: 1415 + components: + - pos: 3.5,-21.5 + parent: 104 + type: Transform + - uid: 1416 + components: + - pos: 4.5,-21.5 + parent: 104 + type: Transform + - uid: 1417 + components: + - pos: 20.5,-24.5 + parent: 104 + type: Transform + - uid: 1418 + components: + - pos: 21.5,-24.5 + parent: 104 + type: Transform + - uid: 1419 + components: + - pos: 22.5,-24.5 + parent: 104 + type: Transform + - uid: 1420 + components: + - pos: 23.5,-24.5 + parent: 104 + type: Transform + - uid: 1421 + components: + - pos: 24.5,-24.5 + parent: 104 + type: Transform + - uid: 1422 + components: + - pos: 25.5,-24.5 + parent: 104 + type: Transform + - uid: 1423 + components: + - pos: 26.5,-24.5 + parent: 104 + type: Transform + - uid: 1424 + components: + - pos: 27.5,-24.5 + parent: 104 + type: Transform + - uid: 1425 + components: + - pos: -4.5,-22.5 + parent: 104 + type: Transform + - uid: 1427 + components: + - pos: -4.5,-17.5 + parent: 104 + type: Transform + - uid: 1433 + components: + - pos: 5.5,-24.5 + parent: 104 + type: Transform + - uid: 1434 + components: + - pos: 33.5,-21.5 + parent: 104 + type: Transform + - uid: 1435 + components: + - pos: 33.5,-20.5 + parent: 104 + type: Transform + - uid: 1436 + components: + - pos: 33.5,-19.5 + parent: 104 + type: Transform + - uid: 1437 + components: + - pos: 33.5,-18.5 + parent: 104 + type: Transform + - uid: 1440 + components: + - pos: 33.5,-17.5 + parent: 104 + type: Transform + - uid: 1441 + components: + - pos: 33.5,-16.5 + parent: 104 + type: Transform + - uid: 1442 + components: + - pos: 33.5,-15.5 + parent: 104 + type: Transform + - uid: 1443 + components: + - pos: 33.5,-14.5 + parent: 104 + type: Transform + - uid: 1444 + components: + - pos: 33.5,-13.5 + parent: 104 + type: Transform + - uid: 1446 + components: + - pos: 33.5,-12.5 + parent: 104 + type: Transform + - uid: 1447 + components: + - pos: 30.5,5.5 + parent: 104 + type: Transform + - uid: 1448 + components: + - pos: 29.5,5.5 + parent: 104 + type: Transform + - uid: 1472 + components: + - pos: 28.5,5.5 + parent: 104 + type: Transform + - uid: 1542 + components: + - pos: 24.5,5.5 + parent: 104 + type: Transform + - uid: 1550 + components: + - pos: 23.5,5.5 + parent: 104 + type: Transform + - uid: 1552 + components: + - pos: 22.5,5.5 + parent: 104 + type: Transform + - uid: 1553 + components: + - pos: 21.5,5.5 + parent: 104 + type: Transform + - uid: 1557 + components: + - pos: 19.5,19.5 + parent: 104 + type: Transform + - uid: 1559 + components: + - pos: 19.5,20.5 + parent: 104 + type: Transform + - uid: 1560 + components: + - pos: 19.5,21.5 + parent: 104 + type: Transform + - uid: 1562 + components: + - pos: -11.5,19.5 + parent: 104 + type: Transform + - uid: 1564 + components: + - pos: -11.5,18.5 + parent: 104 + type: Transform + - uid: 1566 + components: + - pos: 20.5,9.5 + parent: 104 + type: Transform + - uid: 1567 + components: + - pos: 20.5,10.5 + parent: 104 + type: Transform + - uid: 1568 + components: + - pos: 20.5,11.5 + parent: 104 + type: Transform + - uid: 1569 + components: + - pos: 20.5,12.5 + parent: 104 + type: Transform + - uid: 1594 + components: + - pos: 20.5,13.5 + parent: 104 + type: Transform + - uid: 1598 + components: + - pos: 20.5,14.5 + parent: 104 + type: Transform + - uid: 1599 + components: + - pos: 20.5,15.5 + parent: 104 + type: Transform + - uid: 1600 + components: + - pos: 20.5,16.5 + parent: 104 + type: Transform + - uid: 1601 + components: + - pos: 20.5,17.5 + parent: 104 + type: Transform + - uid: 1602 + components: + - pos: 20.5,18.5 + parent: 104 + type: Transform + - uid: 1603 + components: + - pos: 20.5,19.5 + parent: 104 + type: Transform + - uid: 1604 + components: + - pos: 20.5,20.5 + parent: 104 + type: Transform + - uid: 1605 + components: + - pos: 20.5,21.5 + parent: 104 + type: Transform + - uid: 1606 + components: + - pos: -10.5,19.5 + parent: 104 + type: Transform + - uid: 1607 + components: + - pos: 19.5,11.5 + parent: 104 + type: Transform + - uid: 1608 + components: + - pos: 19.5,12.5 + parent: 104 + type: Transform + - uid: 1609 + components: + - pos: 19.5,15.5 + parent: 104 + type: Transform + - uid: 1610 + components: + - pos: 18.5,21.5 + parent: 104 + type: Transform + - uid: 1611 + components: + - pos: 17.5,21.5 + parent: 104 + type: Transform + - uid: 1612 + components: + - pos: 16.5,21.5 + parent: 104 + type: Transform + - uid: 1613 + components: + - pos: 15.5,21.5 + parent: 104 + type: Transform + - uid: 1614 + components: + - pos: 14.5,21.5 + parent: 104 + type: Transform + - uid: 1615 + components: + - pos: 13.5,21.5 + parent: 104 + type: Transform + - uid: 1616 + components: + - pos: 12.5,21.5 + parent: 104 + type: Transform + - uid: 1623 + components: + - pos: 11.5,21.5 + parent: 104 + type: Transform + - uid: 1625 + components: + - pos: 10.5,21.5 + parent: 104 + type: Transform + - uid: 1632 + components: + - pos: 9.5,21.5 + parent: 104 + type: Transform + - uid: 1636 + components: + - pos: -0.5,21.5 + parent: 104 + type: Transform + - uid: 1637 + components: + - pos: -1.5,21.5 + parent: 104 + type: Transform + - uid: 1638 + components: + - pos: -2.5,21.5 + parent: 104 + type: Transform + - uid: 1639 + components: + - pos: -0.5,22.5 + parent: 104 + type: Transform + - uid: 1640 + components: + - pos: -1.5,22.5 + parent: 104 + type: Transform + - uid: 1641 + components: + - pos: -2.5,22.5 + parent: 104 + type: Transform + - uid: 1642 + components: + - pos: -3.5,22.5 + parent: 104 + type: Transform + - uid: 1643 + components: + - pos: -7.5,22.5 + parent: 104 + type: Transform + - uid: 1644 + components: + - pos: -8.5,22.5 + parent: 104 + type: Transform + - uid: 1645 + components: + - pos: -8.5,23.5 + parent: 104 + type: Transform + - uid: 1646 + components: + - pos: -9.5,23.5 + parent: 104 + type: Transform + - uid: 1647 + components: + - pos: -10.5,23.5 + parent: 104 + type: Transform + - uid: 1649 + components: + - pos: 28.5,7.5 + parent: 104 + type: Transform + - uid: 1650 + components: + - pos: 28.5,8.5 + parent: 104 + type: Transform + - uid: 1651 + components: + - pos: 22.5,13.5 + parent: 104 + type: Transform + - uid: 1657 + components: + - pos: 23.5,13.5 + parent: 104 + type: Transform + - uid: 1658 + components: + - pos: 17.5,22.5 + parent: 104 + type: Transform + - uid: 1659 + components: + - pos: 24.5,16.5 + parent: 104 + type: Transform + - uid: 1660 + components: + - pos: 24.5,15.5 + parent: 104 + type: Transform + - uid: 1661 + components: + - pos: 24.5,14.5 + parent: 104 + type: Transform + - uid: 1662 + components: + - pos: 23.5,17.5 + parent: 104 + type: Transform + - uid: 1663 + components: + - pos: 28.5,6.5 + parent: 104 + type: Transform + - uid: 1664 + components: + - pos: 23.5,14.5 + parent: 104 + type: Transform + - uid: 1665 + components: + - pos: 22.5,14.5 + parent: 104 + type: Transform + - uid: 1666 + components: + - pos: 23.5,12.5 + parent: 104 + type: Transform + - uid: 1667 + components: + - pos: 21.5,8.5 + parent: 104 + type: Transform + - uid: 1676 + components: + - pos: 24.5,9.5 + parent: 104 + type: Transform + - uid: 1677 + components: + - pos: 24.5,10.5 + parent: 104 + type: Transform + - uid: 1678 + components: + - pos: 24.5,17.5 + parent: 104 + type: Transform + - uid: 1679 + components: + - pos: 23.5,16.5 + parent: 104 + type: Transform + - uid: 1682 + components: + - pos: 23.5,15.5 + parent: 104 + type: Transform + - uid: 1683 + components: + - pos: 24.5,11.5 + parent: 104 + type: Transform + - uid: 1685 + components: + - pos: 23.5,11.5 + parent: 104 + type: Transform + - uid: 1686 + components: + - pos: 21.5,9.5 + parent: 104 + type: Transform + - uid: 1687 + components: + - pos: 27.5,7.5 + parent: 104 + type: Transform + - uid: 1688 + components: + - pos: 27.5,8.5 + parent: 104 + type: Transform + - uid: 1691 + components: + - pos: 26.5,8.5 + parent: 104 + type: Transform + - uid: 1692 + components: + - pos: 22.5,15.5 + parent: 104 + type: Transform + - uid: 1693 + components: + - pos: 24.5,12.5 + parent: 104 + type: Transform + - uid: 1695 + components: + - pos: 23.5,10.5 + parent: 104 + type: Transform + - uid: 1696 + components: + - pos: 22.5,10.5 + parent: 104 + type: Transform + - uid: 1698 + components: + - pos: 12.5,22.5 + parent: 104 + type: Transform + - uid: 1700 + components: + - pos: 25.5,9.5 + parent: 104 + type: Transform + - uid: 1701 + components: + - pos: 25.5,10.5 + parent: 104 + type: Transform + - uid: 1702 + components: + - pos: 13.5,22.5 + parent: 104 + type: Transform + - uid: 1709 + components: + - pos: 24.5,13.5 + parent: 104 + type: Transform + - uid: 1710 + components: + - pos: 22.5,8.5 + parent: 104 + type: Transform + - uid: 1712 + components: + - pos: 22.5,9.5 + parent: 104 + type: Transform + - uid: 1713 + components: + - pos: 11.5,22.5 + parent: 104 + type: Transform + - uid: 1714 + components: + - pos: 25.5,11.5 + parent: 104 + type: Transform + - uid: 1715 + components: + - pos: 22.5,16.5 + parent: 104 + type: Transform + - uid: 1716 + components: + - pos: 22.5,17.5 + parent: 104 + type: Transform + - uid: 1717 + components: + - pos: 19.5,22.5 + parent: 104 + type: Transform + - uid: 1719 + components: + - pos: 21.5,13.5 + parent: 104 + type: Transform + - uid: 1720 + components: + - pos: 23.5,9.5 + parent: 104 + type: Transform + - uid: 1721 + components: + - pos: 21.5,11.5 + parent: 104 + type: Transform + - uid: 1722 + components: + - pos: 22.5,11.5 + parent: 104 + type: Transform + - uid: 1723 + components: + - pos: 10.5,22.5 + parent: 104 + type: Transform + - uid: 1724 + components: + - pos: 22.5,18.5 + parent: 104 + type: Transform + - uid: 1725 + components: + - pos: 16.5,22.5 + parent: 104 + type: Transform + - uid: 1726 + components: + - pos: 15.5,22.5 + parent: 104 + type: Transform + - uid: 1727 + components: + - pos: 14.5,22.5 + parent: 104 + type: Transform + - uid: 1729 + components: + - pos: 23.5,13.5 + parent: 104 + type: Transform + - uid: 1731 + components: + - pos: -11.5,21.5 + parent: 104 + type: Transform + - uid: 1732 + components: + - pos: 22.5,12.5 + parent: 104 + type: Transform + - uid: 1733 + components: + - pos: 27.5,6.5 + parent: 104 + type: Transform + - uid: 1734 + components: + - pos: 22.5,19.5 + parent: 104 + type: Transform + - uid: 1735 + components: + - pos: 18.5,22.5 + parent: 104 + type: Transform + - uid: 1736 + components: + - pos: 21.5,21.5 + parent: 104 + type: Transform + - uid: 1740 + components: + - pos: -11.5,20.5 + parent: 104 + type: Transform + - uid: 1741 + components: + - pos: 21.5,10.5 + parent: 104 + type: Transform + - uid: 1742 + components: + - pos: 21.5,20.5 + parent: 104 + type: Transform + - uid: 1743 + components: + - pos: 20.5,22.5 + parent: 104 + type: Transform + - uid: 1744 + components: + - pos: 21.5,19.5 + parent: 104 + type: Transform + - uid: 1745 + components: + - pos: 21.5,18.5 + parent: 104 + type: Transform + - uid: 1746 + components: + - pos: 21.5,17.5 + parent: 104 + type: Transform + - uid: 1747 + components: + - pos: 21.5,16.5 + parent: 104 + type: Transform + - uid: 1748 + components: + - pos: 21.5,15.5 + parent: 104 + type: Transform + - uid: 1749 + components: + - pos: 21.5,14.5 + parent: 104 + type: Transform + - uid: 1750 + components: + - pos: 21.5,12.5 + parent: 104 + type: Transform + - uid: 1751 + components: + - pos: 9.5,19.5 + parent: 104 + type: Transform + - uid: 1752 + components: + - pos: -2.5,23.5 + parent: 104 + type: Transform + - uid: 1753 + components: + - pos: -3.5,23.5 + parent: 104 + type: Transform + - uid: 1754 + components: + - pos: -4.5,23.5 + parent: 104 + type: Transform + - uid: 1755 + components: + - pos: -5.5,23.5 + parent: 104 + type: Transform + - uid: 1756 + components: + - pos: -6.5,23.5 + parent: 104 + type: Transform + - uid: 1757 + components: + - pos: -7.5,23.5 + parent: 104 + type: Transform + - uid: 1762 + components: + - pos: 1.5,-18.5 + parent: 104 + type: Transform + - uid: 1767 + components: + - pos: -19.5,7.5 + parent: 104 + type: Transform + - uid: 1768 + components: + - pos: -19.5,6.5 + parent: 104 + type: Transform + - uid: 1769 + components: + - pos: -19.5,5.5 + parent: 104 + type: Transform + - uid: 1770 + components: + - pos: -18.5,7.5 + parent: 104 + type: Transform + - uid: 1771 + components: + - pos: -18.5,6.5 + parent: 104 + type: Transform + - uid: 1772 + components: + - pos: -18.5,5.5 + parent: 104 + type: Transform + - uid: 1773 + components: + - pos: -17.5,7.5 + parent: 104 + type: Transform + - uid: 1774 + components: + - pos: -17.5,6.5 + parent: 104 + type: Transform + - uid: 1775 + components: + - pos: -17.5,5.5 + parent: 104 + type: Transform + - uid: 1776 + components: + - pos: -21.5,19.5 + parent: 104 + type: Transform + - uid: 1777 + components: + - pos: -22.5,19.5 + parent: 104 + type: Transform + - uid: 1778 + components: + - pos: -21.5,18.5 + parent: 104 + type: Transform + - uid: 1779 + components: + - pos: -22.5,18.5 + parent: 104 + type: Transform + - uid: 1780 + components: + - pos: -22.5,17.5 + parent: 104 + type: Transform + - uid: 1781 + components: + - pos: -23.5,17.5 + parent: 104 + type: Transform + - uid: 1782 + components: + - pos: -23.5,16.5 + parent: 104 + type: Transform + - uid: 1792 + components: + - pos: 4.5,-19.5 + parent: 104 + type: Transform + - uid: 1793 + components: + - pos: 4.5,-20.5 + parent: 104 + type: Transform + - uid: 1794 + components: + - pos: 2.5,-19.5 + parent: 104 + type: Transform + - uid: 1795 + components: + - pos: 2.5,-20.5 + parent: 104 + type: Transform + - uid: 1796 + components: + - pos: -1.5,-10.5 + parent: 104 + type: Transform + - uid: 1797 + components: + - pos: 3.5,-19.5 + parent: 104 + type: Transform + - uid: 1798 + components: + - pos: 3.5,-20.5 + parent: 104 + type: Transform + - uid: 1801 + components: + - pos: 7.5,-19.5 + parent: 104 + type: Transform + - uid: 1802 + components: + - pos: 7.5,-20.5 + parent: 104 + type: Transform + - uid: 1803 + components: + - pos: 7.5,-21.5 + parent: 104 + type: Transform + - uid: 1804 + components: + - pos: 5.5,-19.5 + parent: 104 + type: Transform + - uid: 1805 + components: + - pos: 5.5,-20.5 + parent: 104 + type: Transform + - uid: 1806 + components: + - pos: 5.5,-21.5 + parent: 104 + type: Transform + - uid: 1807 + components: + - pos: 6.5,-19.5 + parent: 104 + type: Transform + - uid: 1808 + components: + - pos: 6.5,-20.5 + parent: 104 + type: Transform + - uid: 1809 + components: + - pos: 6.5,-21.5 + parent: 104 + type: Transform + - uid: 1835 + components: + - pos: 8.5,-19.5 + parent: 104 + type: Transform + - uid: 1836 + components: + - pos: 8.5,-20.5 + parent: 104 + type: Transform + - uid: 1837 + components: + - pos: 8.5,-21.5 + parent: 104 + type: Transform + - uid: 1865 + components: + - pos: 16.5,-21.5 + parent: 104 + type: Transform + - uid: 1870 + components: + - pos: 17.5,-21.5 + parent: 104 + type: Transform + - uid: 1875 + components: + - pos: 18.5,-21.5 + parent: 104 + type: Transform + - uid: 1880 + components: + - pos: 19.5,-21.5 + parent: 104 + type: Transform + - uid: 1884 + components: + - pos: 20.5,-21.5 + parent: 104 + type: Transform + - uid: 1888 + components: + - pos: 21.5,-21.5 + parent: 104 + type: Transform + - uid: 1892 + components: + - pos: 22.5,-21.5 + parent: 104 + type: Transform + - uid: 1896 + components: + - pos: 23.5,-21.5 + parent: 104 + type: Transform + - uid: 1900 + components: + - pos: 24.5,-21.5 + parent: 104 + type: Transform + - uid: 1904 + components: + - pos: 25.5,-21.5 + parent: 104 + type: Transform + - uid: 1909 + components: + - pos: 28.5,-11.5 + parent: 104 + type: Transform + - uid: 1910 + components: + - pos: 28.5,-10.5 + parent: 104 + type: Transform + - uid: 1911 + components: + - pos: 28.5,-9.5 + parent: 104 + type: Transform + - uid: 1912 + components: + - pos: 28.5,-8.5 + parent: 104 + type: Transform + - uid: 1913 + components: + - pos: 26.5,-21.5 + parent: 104 + type: Transform + - uid: 1923 + components: + - pos: 26.5,-11.5 + parent: 104 + type: Transform + - uid: 1924 + components: + - pos: 26.5,-10.5 + parent: 104 + type: Transform + - uid: 1925 + components: + - pos: 26.5,-9.5 + parent: 104 + type: Transform + - uid: 1926 + components: + - pos: 26.5,-8.5 + parent: 104 + type: Transform + - uid: 1927 + components: + - pos: 26.5,-7.5 + parent: 104 + type: Transform + - uid: 1928 + components: + - pos: 26.5,-6.5 + parent: 104 + type: Transform + - uid: 1930 + components: + - pos: 26.5,-5.5 + parent: 104 + type: Transform + - uid: 1934 + components: + - pos: 26.5,-4.5 + parent: 104 + type: Transform + - uid: 1935 + components: + - pos: 26.5,-3.5 + parent: 104 + type: Transform + - uid: 1936 + components: + - pos: 26.5,-2.5 + parent: 104 + type: Transform + - uid: 1937 + components: + - pos: 26.5,-1.5 + parent: 104 + type: Transform + - uid: 1938 + components: + - pos: 26.5,-0.5 + parent: 104 + type: Transform + - uid: 1939 + components: + - pos: 26.5,0.5 + parent: 104 + type: Transform + - uid: 1940 + components: + - pos: 26.5,1.5 + parent: 104 + type: Transform + - uid: 1942 + components: + - pos: 27.5,-21.5 + parent: 104 + type: Transform + - uid: 1952 + components: + - pos: 27.5,-11.5 + parent: 104 + type: Transform + - uid: 1953 + components: + - pos: 27.5,-10.5 + parent: 104 + type: Transform + - uid: 1954 + components: + - pos: 27.5,-9.5 + parent: 104 + type: Transform + - uid: 1955 + components: + - pos: 27.5,-8.5 + parent: 104 + type: Transform + - uid: 1956 + components: + - pos: 27.5,-7.5 + parent: 104 + type: Transform + - uid: 1957 + components: + - pos: 27.5,-6.5 + parent: 104 + type: Transform + - uid: 1958 + components: + - pos: 27.5,-5.5 + parent: 104 + type: Transform + - uid: 1959 + components: + - pos: 27.5,-4.5 + parent: 104 + type: Transform + - uid: 1960 + components: + - pos: 27.5,-3.5 + parent: 104 + type: Transform + - uid: 1961 + components: + - pos: 27.5,-2.5 + parent: 104 + type: Transform + - uid: 1962 + components: + - pos: 27.5,-1.5 + parent: 104 + type: Transform + - uid: 1963 + components: + - pos: 27.5,-0.5 + parent: 104 + type: Transform + - uid: 1964 + components: + - pos: 27.5,0.5 + parent: 104 + type: Transform + - uid: 1965 + components: + - pos: 27.5,1.5 + parent: 104 + type: Transform + - uid: 1966 + components: + - pos: 27.5,2.5 + parent: 104 + type: Transform + - uid: 1967 + components: + - pos: 28.5,-21.5 + parent: 104 + type: Transform + - uid: 1973 + components: + - pos: 30.5,-1.5 + parent: 104 + type: Transform + - uid: 1974 + components: + - pos: 30.5,-0.5 + parent: 104 + type: Transform + - uid: 1975 + components: + - pos: 30.5,0.5 + parent: 104 + type: Transform + - uid: 1976 + components: + - pos: 30.5,1.5 + parent: 104 + type: Transform + - uid: 1977 + components: + - pos: 30.5,2.5 + parent: 104 + type: Transform + - uid: 1978 + components: + - pos: 28.5,-7.5 + parent: 104 + type: Transform + - uid: 1979 + components: + - pos: 28.5,-6.5 + parent: 104 + type: Transform + - uid: 1980 + components: + - pos: 28.5,-5.5 + parent: 104 + type: Transform + - uid: 1981 + components: + - pos: 28.5,-4.5 + parent: 104 + type: Transform + - uid: 1982 + components: + - pos: 28.5,-3.5 + parent: 104 + type: Transform + - uid: 1983 + components: + - pos: 28.5,-2.5 + parent: 104 + type: Transform + - uid: 1984 + components: + - pos: 28.5,-1.5 + parent: 104 + type: Transform + - uid: 1985 + components: + - pos: 28.5,-0.5 + parent: 104 + type: Transform + - uid: 1986 + components: + - pos: 28.5,0.5 + parent: 104 + type: Transform + - uid: 1987 + components: + - pos: 28.5,1.5 + parent: 104 + type: Transform + - uid: 1988 + components: + - pos: 28.5,2.5 + parent: 104 + type: Transform + - uid: 1989 + components: + - pos: 29.5,-20.5 + parent: 104 + type: Transform + - uid: 1990 + components: + - pos: 29.5,-19.5 + parent: 104 + type: Transform + - uid: 1991 + components: + - pos: 29.5,-18.5 + parent: 104 + type: Transform + - uid: 1992 + components: + - pos: 29.5,-17.5 + parent: 104 + type: Transform + - uid: 1993 + components: + - pos: 29.5,-16.5 + parent: 104 + type: Transform + - uid: 1994 + components: + - pos: 29.5,-15.5 + parent: 104 + type: Transform + - uid: 1995 + components: + - pos: 29.5,-14.5 + parent: 104 + type: Transform + - uid: 1996 + components: + - pos: 29.5,-13.5 + parent: 104 + type: Transform + - uid: 1997 + components: + - pos: 29.5,-12.5 + parent: 104 + type: Transform + - uid: 1998 + components: + - pos: 29.5,-11.5 + parent: 104 + type: Transform + - uid: 1999 + components: + - pos: 29.5,-10.5 + parent: 104 + type: Transform + - uid: 2000 + components: + - pos: 29.5,-9.5 + parent: 104 + type: Transform + - uid: 2001 + components: + - pos: 29.5,-8.5 + parent: 104 + type: Transform + - uid: 2002 + components: + - pos: 29.5,-7.5 + parent: 104 + type: Transform + - uid: 2003 + components: + - pos: 29.5,-6.5 + parent: 104 + type: Transform + - uid: 2004 + components: + - pos: 29.5,-5.5 + parent: 104 + type: Transform + - uid: 2005 + components: + - pos: 29.5,-4.5 + parent: 104 + type: Transform + - uid: 2006 + components: + - pos: 29.5,-3.5 + parent: 104 + type: Transform + - uid: 2007 + components: + - pos: 29.5,-2.5 + parent: 104 + type: Transform + - uid: 2008 + components: + - pos: 29.5,-1.5 + parent: 104 + type: Transform + - uid: 2009 + components: + - pos: 29.5,-0.5 + parent: 104 + type: Transform + - uid: 2010 + components: + - pos: 29.5,0.5 + parent: 104 + type: Transform + - uid: 2011 + components: + - pos: 29.5,1.5 + parent: 104 + type: Transform + - uid: 2012 + components: + - pos: 29.5,2.5 + parent: 104 + type: Transform + - uid: 2013 + components: + - pos: 30.5,-19.5 + parent: 104 + type: Transform + - uid: 2014 + components: + - pos: 30.5,-18.5 + parent: 104 + type: Transform + - uid: 2015 + components: + - pos: 30.5,-17.5 + parent: 104 + type: Transform + - uid: 2020 + components: + - pos: 30.5,-16.5 + parent: 104 + type: Transform + - uid: 2023 + components: + - pos: 30.5,-15.5 + parent: 104 + type: Transform + - uid: 2024 + components: + - pos: 30.5,-14.5 + parent: 104 + type: Transform + - uid: 2025 + components: + - pos: 30.5,-13.5 + parent: 104 + type: Transform + - uid: 2026 + components: + - pos: 30.5,-12.5 + parent: 104 + type: Transform + - uid: 2029 + components: + - pos: 30.5,-9.5 + parent: 104 + type: Transform + - uid: 2030 + components: + - pos: 30.5,-8.5 + parent: 104 + type: Transform + - uid: 2032 + components: + - pos: 30.5,-7.5 + parent: 104 + type: Transform + - uid: 2033 + components: + - pos: 30.5,-6.5 + parent: 104 + type: Transform + - uid: 2034 + components: + - pos: 30.5,-5.5 + parent: 104 + type: Transform + - uid: 2035 + components: + - pos: 30.5,-4.5 + parent: 104 + type: Transform + - uid: 2036 + components: + - pos: 30.5,-3.5 + parent: 104 + type: Transform + - uid: 2037 + components: + - pos: 30.5,-2.5 + parent: 104 + type: Transform + - uid: 2038 + components: + - pos: 20.5,-0.5 + parent: 104 + type: Transform + - uid: 2039 + components: + - pos: 20.5,-1.5 + parent: 104 + type: Transform + - uid: 2040 + components: + - pos: 15.5,2.5 + parent: 104 + type: Transform + - uid: 2041 + components: + - pos: 16.5,2.5 + parent: 104 + type: Transform + - uid: 2042 + components: + - pos: 19.5,0.5 + parent: 104 + type: Transform + - uid: 2043 + components: + - pos: 19.5,-0.5 + parent: 104 + type: Transform + - uid: 2044 + components: + - pos: 19.5,-1.5 + parent: 104 + type: Transform + - uid: 2047 + components: + - pos: 25.5,0.5 + parent: 104 + type: Transform + - uid: 2049 + components: + - pos: 25.5,-0.5 + parent: 104 + type: Transform + - uid: 2051 + components: + - pos: 25.5,-1.5 + parent: 104 + type: Transform + - uid: 2054 + components: + - pos: 24.5,0.5 + parent: 104 + type: Transform + - uid: 2055 + components: + - pos: 24.5,-0.5 + parent: 104 + type: Transform + - uid: 2056 + components: + - pos: 24.5,-1.5 + parent: 104 + type: Transform + - uid: 2058 + components: + - pos: 23.5,1.5 + parent: 104 + type: Transform + - uid: 2059 + components: + - pos: 23.5,0.5 + parent: 104 + type: Transform + - uid: 2060 + components: + - pos: 23.5,-0.5 + parent: 104 + type: Transform + - uid: 2061 + components: + - pos: 23.5,-1.5 + parent: 104 + type: Transform + - uid: 2063 + components: + - pos: 22.5,1.5 + parent: 104 + type: Transform + - uid: 2064 + components: + - pos: 22.5,0.5 + parent: 104 + type: Transform + - uid: 2065 + components: + - pos: 22.5,-0.5 + parent: 104 + type: Transform + - uid: 2066 + components: + - pos: 22.5,-1.5 + parent: 104 + type: Transform + - uid: 2067 + components: + - pos: 14.5,2.5 + parent: 104 + type: Transform + - uid: 2068 + components: + - pos: 15.5,1.5 + parent: 104 + type: Transform + - uid: 2069 + components: + - pos: 21.5,0.5 + parent: 104 + type: Transform + - uid: 2070 + components: + - pos: 21.5,-0.5 + parent: 104 + type: Transform + - uid: 2071 + components: + - pos: 21.5,-1.5 + parent: 104 + type: Transform + - uid: 2072 + components: + - pos: 14.5,3.5 + parent: 104 + type: Transform + - uid: 2073 + components: + - pos: 17.5,-0.5 + parent: 104 + type: Transform + - uid: 2074 + components: + - pos: 17.5,0.5 + parent: 104 + type: Transform + - uid: 2075 + components: + - pos: 17.5,1.5 + parent: 104 + type: Transform + - uid: 2076 + components: + - pos: 18.5,-1.5 + parent: 104 + type: Transform + - uid: 2077 + components: + - pos: 18.5,-0.5 + parent: 104 + type: Transform + - uid: 2078 + components: + - pos: 18.5,0.5 + parent: 104 + type: Transform + - uid: 2079 + components: + - pos: 18.5,1.5 + parent: 104 + type: Transform + - uid: 2080 + components: + - pos: -12.5,28.5 + parent: 104 + type: Transform + - uid: 2084 + components: + - pos: -12.5,27.5 + parent: 104 + type: Transform + - uid: 2085 + components: + - pos: -12.5,26.5 + parent: 104 + type: Transform + - uid: 2086 + components: + - pos: -12.5,25.5 + parent: 104 + type: Transform + - uid: 2087 + components: + - pos: -16.5,25.5 + parent: 104 + type: Transform + - uid: 2088 + components: + - pos: -3.5,-6.5 + parent: 104 + type: Transform + - uid: 2091 + components: + - pos: -15.5,25.5 + parent: 104 + type: Transform + - uid: 2093 + components: + - pos: -14.5,26.5 + parent: 104 + type: Transform + - uid: 2094 + components: + - pos: -14.5,25.5 + parent: 104 + type: Transform + - uid: 2096 + components: + - pos: -13.5,27.5 + parent: 104 + type: Transform + - uid: 2098 + components: + - pos: -13.5,26.5 + parent: 104 + type: Transform + - uid: 2099 + components: + - pos: -13.5,25.5 + parent: 104 + type: Transform + - uid: 2100 + components: + - pos: -20.5,30.5 + parent: 104 + type: Transform + - uid: 2101 + components: + - pos: -20.5,29.5 + parent: 104 + type: Transform + - uid: 2102 + components: + - pos: -20.5,28.5 + parent: 104 + type: Transform + - uid: 2103 + components: + - pos: -20.5,27.5 + parent: 104 + type: Transform + - uid: 2104 + components: + - pos: -20.5,26.5 + parent: 104 + type: Transform + - uid: 2105 + components: + - pos: -20.5,25.5 + parent: 104 + type: Transform + - uid: 2106 + components: + - pos: -20.5,24.5 + parent: 104 + type: Transform + - uid: 2107 + components: + - pos: -19.5,30.5 + parent: 104 + type: Transform + - uid: 2108 + components: + - pos: -19.5,29.5 + parent: 104 + type: Transform + - uid: 2109 + components: + - pos: -19.5,28.5 + parent: 104 + type: Transform + - uid: 2110 + components: + - pos: -19.5,27.5 + parent: 104 + type: Transform + - uid: 2111 + components: + - pos: -19.5,26.5 + parent: 104 + type: Transform + - uid: 2112 + components: + - pos: -19.5,25.5 + parent: 104 + type: Transform + - uid: 2113 + components: + - pos: -19.5,24.5 + parent: 104 + type: Transform + - uid: 2115 + components: + - pos: -18.5,30.5 + parent: 104 + type: Transform + - uid: 2116 + components: + - pos: -18.5,29.5 + parent: 104 + type: Transform + - uid: 2117 + components: + - pos: -18.5,28.5 + parent: 104 + type: Transform + - uid: 2118 + components: + - pos: -18.5,27.5 + parent: 104 + type: Transform + - uid: 2119 + components: + - pos: -18.5,26.5 + parent: 104 + type: Transform + - uid: 2120 + components: + - pos: -18.5,25.5 + parent: 104 + type: Transform + - uid: 2121 + components: + - pos: -18.5,24.5 + parent: 104 + type: Transform + - uid: 2122 + components: + - pos: -17.5,28.5 + parent: 104 + type: Transform + - uid: 2123 + components: + - pos: -17.5,27.5 + parent: 104 + type: Transform + - uid: 2124 + components: + - pos: -17.5,25.5 + parent: 104 + type: Transform + - uid: 2125 + components: + - pos: -11.5,28.5 + parent: 104 + type: Transform + - uid: 2127 + components: + - pos: -11.5,27.5 + parent: 104 + type: Transform + - uid: 2128 + components: + - pos: -11.5,26.5 + parent: 104 + type: Transform + - uid: 2129 + components: + - pos: -11.5,25.5 + parent: 104 + type: Transform + - uid: 2130 + components: + - pos: -11.5,24.5 + parent: 104 + type: Transform + - uid: 2131 + components: + - pos: -21.5,31.5 + parent: 104 + type: Transform + - uid: 2132 + components: + - pos: -20.5,31.5 + parent: 104 + type: Transform + - uid: 2133 + components: + - pos: -19.5,31.5 + parent: 104 + type: Transform + - uid: 2134 + components: + - pos: -10.5,28.5 + parent: 104 + type: Transform + - uid: 2136 + components: + - pos: -10.5,27.5 + parent: 104 + type: Transform + - uid: 2137 + components: + - pos: -10.5,26.5 + parent: 104 + type: Transform + - uid: 2138 + components: + - pos: -10.5,25.5 + parent: 104 + type: Transform + - uid: 2139 + components: + - pos: -10.5,24.5 + parent: 104 + type: Transform + - uid: 2140 + components: + - pos: -9.5,29.5 + parent: 104 + type: Transform + - uid: 2141 + components: + - pos: -9.5,28.5 + parent: 104 + type: Transform + - uid: 2142 + components: + - pos: -9.5,27.5 + parent: 104 + type: Transform + - uid: 2143 + components: + - pos: -9.5,26.5 + parent: 104 + type: Transform + - uid: 2144 + components: + - pos: -9.5,25.5 + parent: 104 + type: Transform + - uid: 2145 + components: + - pos: -9.5,24.5 + parent: 104 + type: Transform + - uid: 2146 + components: + - pos: -8.5,29.5 + parent: 104 + type: Transform + - uid: 2147 + components: + - pos: -8.5,28.5 + parent: 104 + type: Transform + - uid: 2148 + components: + - pos: -8.5,27.5 + parent: 104 + type: Transform + - uid: 2149 + components: + - pos: -8.5,26.5 + parent: 104 + type: Transform + - uid: 2150 + components: + - pos: -8.5,25.5 + parent: 104 + type: Transform + - uid: 2151 + components: + - pos: -8.5,24.5 + parent: 104 + type: Transform + - uid: 2152 + components: + - pos: -7.5,29.5 + parent: 104 + type: Transform + - uid: 2153 + components: + - pos: -7.5,28.5 + parent: 104 + type: Transform + - uid: 2154 + components: + - pos: -7.5,27.5 + parent: 104 + type: Transform + - uid: 2155 + components: + - pos: -7.5,26.5 + parent: 104 + type: Transform + - uid: 2156 + components: + - pos: -7.5,25.5 + parent: 104 + type: Transform + - uid: 2157 + components: + - pos: -7.5,24.5 + parent: 104 + type: Transform + - uid: 2158 + components: + - pos: -6.5,29.5 + parent: 104 + type: Transform + - uid: 2159 + components: + - pos: -6.5,28.5 + parent: 104 + type: Transform + - uid: 2160 + components: + - pos: -6.5,27.5 + parent: 104 + type: Transform + - uid: 2161 + components: + - pos: -6.5,26.5 + parent: 104 + type: Transform + - uid: 2162 + components: + - pos: -6.5,25.5 + parent: 104 + type: Transform + - uid: 2163 + components: + - pos: -6.5,24.5 + parent: 104 + type: Transform + - uid: 2164 + components: + - pos: -5.5,29.5 + parent: 104 + type: Transform + - uid: 2165 + components: + - pos: -5.5,28.5 + parent: 104 + type: Transform + - uid: 2166 + components: + - pos: -5.5,27.5 + parent: 104 + type: Transform + - uid: 2167 + components: + - pos: -5.5,26.5 + parent: 104 + type: Transform + - uid: 2168 + components: + - pos: -5.5,25.5 + parent: 104 + type: Transform + - uid: 2169 + components: + - pos: -5.5,24.5 + parent: 104 + type: Transform + - uid: 2170 + components: + - pos: -4.5,29.5 + parent: 104 + type: Transform + - uid: 2171 + components: + - pos: -4.5,28.5 + parent: 104 + type: Transform + - uid: 2172 + components: + - pos: -4.5,27.5 + parent: 104 + type: Transform + - uid: 2173 + components: + - pos: -4.5,26.5 + parent: 104 + type: Transform + - uid: 2174 + components: + - pos: -4.5,25.5 + parent: 104 + type: Transform + - uid: 2175 + components: + - pos: -4.5,24.5 + parent: 104 + type: Transform + - uid: 2176 + components: + - pos: -3.5,28.5 + parent: 104 + type: Transform + - uid: 2177 + components: + - pos: -3.5,27.5 + parent: 104 + type: Transform + - uid: 2178 + components: + - pos: -3.5,26.5 + parent: 104 + type: Transform + - uid: 2179 + components: + - pos: -3.5,25.5 + parent: 104 + type: Transform + - uid: 2180 + components: + - pos: -3.5,24.5 + parent: 104 + type: Transform + - uid: 2181 + components: + - pos: -2.5,26.5 + parent: 104 + type: Transform + - uid: 2183 + components: + - pos: -2.5,25.5 + parent: 104 + type: Transform + - uid: 2184 + components: + - pos: -2.5,24.5 + parent: 104 + type: Transform + - uid: 2192 + components: + - pos: -5.5,-23.5 + parent: 104 + type: Transform + - uid: 2194 + components: + - pos: 15.5,29.5 + parent: 104 + type: Transform + - uid: 2195 + components: + - pos: 10.5,24.5 + parent: 104 + type: Transform + - uid: 2196 + components: + - pos: 15.5,31.5 + parent: 104 + type: Transform + - uid: 2197 + components: + - pos: 16.5,26.5 + parent: 104 + type: Transform + - uid: 2198 + components: + - pos: 15.5,30.5 + parent: 104 + type: Transform + - uid: 2199 + components: + - pos: 15.5,32.5 + parent: 104 + type: Transform + - uid: 2200 + components: + - pos: 16.5,23.5 + parent: 104 + type: Transform + - uid: 2201 + components: + - pos: 16.5,24.5 + parent: 104 + type: Transform + - uid: 2202 + components: + - pos: 16.5,25.5 + parent: 104 + type: Transform + - uid: 2203 + components: + - pos: 10.5,23.5 + parent: 104 + type: Transform + - uid: 2204 + components: + - pos: 10.5,25.5 + parent: 104 + type: Transform + - uid: 2205 + components: + - pos: 10.5,26.5 + parent: 104 + type: Transform + - uid: 2206 + components: + - pos: 10.5,27.5 + parent: 104 + type: Transform + - uid: 2207 + components: + - pos: 10.5,28.5 + parent: 104 + type: Transform + - uid: 2208 + components: + - pos: 11.5,23.5 + parent: 104 + type: Transform + - uid: 2209 + components: + - pos: 11.5,24.5 + parent: 104 + type: Transform + - uid: 2210 + components: + - pos: 11.5,25.5 + parent: 104 + type: Transform + - uid: 2211 + components: + - pos: 11.5,26.5 + parent: 104 + type: Transform + - uid: 2212 + components: + - pos: 11.5,27.5 + parent: 104 + type: Transform + - uid: 2213 + components: + - pos: 11.5,28.5 + parent: 104 + type: Transform + - uid: 2214 + components: + - pos: 11.5,29.5 + parent: 104 + type: Transform + - uid: 2215 + components: + - pos: 12.5,23.5 + parent: 104 + type: Transform + - uid: 2216 + components: + - pos: 12.5,24.5 + parent: 104 + type: Transform + - uid: 2217 + components: + - pos: 12.5,25.5 + parent: 104 + type: Transform + - uid: 2218 + components: + - pos: 12.5,26.5 + parent: 104 + type: Transform + - uid: 2219 + components: + - pos: 12.5,27.5 + parent: 104 + type: Transform + - uid: 2220 + components: + - pos: 12.5,28.5 + parent: 104 + type: Transform + - uid: 2221 + components: + - pos: 12.5,29.5 + parent: 104 + type: Transform + - uid: 2222 + components: + - pos: 12.5,30.5 + parent: 104 + type: Transform + - uid: 2223 + components: + - pos: 12.5,31.5 + parent: 104 + type: Transform + - uid: 2224 + components: + - pos: 13.5,23.5 + parent: 104 + type: Transform + - uid: 2225 + components: + - pos: 13.5,24.5 + parent: 104 + type: Transform + - uid: 2226 + components: + - pos: 13.5,25.5 + parent: 104 + type: Transform + - uid: 2227 + components: + - pos: 13.5,26.5 + parent: 104 + type: Transform + - uid: 2228 + components: + - pos: 13.5,27.5 + parent: 104 + type: Transform + - uid: 2229 + components: + - pos: 13.5,28.5 + parent: 104 + type: Transform + - uid: 2230 + components: + - pos: 13.5,29.5 + parent: 104 + type: Transform + - uid: 2231 + components: + - pos: 13.5,30.5 + parent: 104 + type: Transform + - uid: 2232 + components: + - pos: 13.5,31.5 + parent: 104 + type: Transform + - uid: 2233 + components: + - pos: 14.5,23.5 + parent: 104 + type: Transform + - uid: 2234 + components: + - pos: 14.5,24.5 + parent: 104 + type: Transform + - uid: 2235 + components: + - pos: 14.5,25.5 + parent: 104 + type: Transform + - uid: 2236 + components: + - pos: 14.5,26.5 + parent: 104 + type: Transform + - uid: 2237 + components: + - pos: 14.5,27.5 + parent: 104 + type: Transform + - uid: 2238 + components: + - pos: 14.5,28.5 + parent: 104 + type: Transform + - uid: 2239 + components: + - pos: 14.5,29.5 + parent: 104 + type: Transform + - uid: 2240 + components: + - pos: 14.5,30.5 + parent: 104 + type: Transform + - uid: 2241 + components: + - pos: 14.5,31.5 + parent: 104 + type: Transform + - uid: 2242 + components: + - pos: 14.5,32.5 + parent: 104 + type: Transform + - uid: 2243 + components: + - pos: 15.5,23.5 + parent: 104 + type: Transform + - uid: 2244 + components: + - pos: 15.5,24.5 + parent: 104 + type: Transform + - uid: 2245 + components: + - pos: 15.5,25.5 + parent: 104 + type: Transform + - uid: 2246 + components: + - pos: 15.5,26.5 + parent: 104 + type: Transform + - uid: 2247 + components: + - pos: 15.5,27.5 + parent: 104 + type: Transform + - uid: 2248 + components: + - pos: 15.5,28.5 + parent: 104 + type: Transform + - uid: 2249 + components: + - pos: 19.5,25.5 + parent: 104 + type: Transform + - uid: 2250 + components: + - pos: 19.5,26.5 + parent: 104 + type: Transform + - uid: 2251 + components: + - pos: 19.5,27.5 + parent: 104 + type: Transform + - uid: 2252 + components: + - pos: 19.5,28.5 + parent: 104 + type: Transform + - uid: 2253 + components: + - pos: 19.5,29.5 + parent: 104 + type: Transform + - uid: 2254 + components: + - pos: 19.5,30.5 + parent: 104 + type: Transform + - uid: 2255 + components: + - pos: 19.5,31.5 + parent: 104 + type: Transform + - uid: 2256 + components: + - pos: 20.5,26.5 + parent: 104 + type: Transform + - uid: 2259 + components: + - pos: 20.5,27.5 + parent: 104 + type: Transform + - uid: 2260 + components: + - pos: 20.5,28.5 + parent: 104 + type: Transform + - uid: 2261 + components: + - pos: 20.5,29.5 + parent: 104 + type: Transform + - uid: 2262 + components: + - pos: 16.5,27.5 + parent: 104 + type: Transform + - uid: 2263 + components: + - pos: 16.5,28.5 + parent: 104 + type: Transform + - uid: 2264 + components: + - pos: 16.5,29.5 + parent: 104 + type: Transform + - uid: 2265 + components: + - pos: 16.5,30.5 + parent: 104 + type: Transform + - uid: 2266 + components: + - pos: 16.5,31.5 + parent: 104 + type: Transform + - uid: 2267 + components: + - pos: 16.5,32.5 + parent: 104 + type: Transform + - uid: 2268 + components: + - pos: 17.5,23.5 + parent: 104 + type: Transform + - uid: 2269 + components: + - pos: 17.5,24.5 + parent: 104 + type: Transform + - uid: 2270 + components: + - pos: 17.5,25.5 + parent: 104 + type: Transform + - uid: 2271 + components: + - pos: 17.5,26.5 + parent: 104 + type: Transform + - uid: 2272 + components: + - pos: 17.5,27.5 + parent: 104 + type: Transform + - uid: 2273 + components: + - pos: 17.5,28.5 + parent: 104 + type: Transform + - uid: 2274 + components: + - pos: 17.5,29.5 + parent: 104 + type: Transform + - uid: 2275 + components: + - pos: 17.5,30.5 + parent: 104 + type: Transform + - uid: 2276 + components: + - pos: 17.5,31.5 + parent: 104 + type: Transform + - uid: 2277 + components: + - pos: 17.5,32.5 + parent: 104 + type: Transform + - uid: 2278 + components: + - pos: 18.5,23.5 + parent: 104 + type: Transform + - uid: 2279 + components: + - pos: 18.5,24.5 + parent: 104 + type: Transform + - uid: 2280 + components: + - pos: 18.5,25.5 + parent: 104 + type: Transform + - uid: 2281 + components: + - pos: 18.5,26.5 + parent: 104 + type: Transform + - uid: 2282 + components: + - pos: 18.5,27.5 + parent: 104 + type: Transform + - uid: 2283 + components: + - pos: 18.5,28.5 + parent: 104 + type: Transform + - uid: 2284 + components: + - pos: 18.5,29.5 + parent: 104 + type: Transform + - uid: 2285 + components: + - pos: 18.5,30.5 + parent: 104 + type: Transform + - uid: 2286 + components: + - pos: 18.5,31.5 + parent: 104 + type: Transform + - uid: 2287 + components: + - pos: 18.5,32.5 + parent: 104 + type: Transform + - uid: 2288 + components: + - pos: 19.5,23.5 + parent: 104 + type: Transform + - uid: 2289 + components: + - pos: 19.5,24.5 + parent: 104 + type: Transform - proto: BalloonSyn entities: - uid: 1327 @@ -5400,6 +9914,25 @@ entities: pos: 7.5,-14.5 parent: 104 type: Transform +- proto: ChairFolding + entities: + - uid: 544 + components: + - pos: 20.5,8.5 + parent: 104 + type: Transform + - uid: 1062 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,4.5 + parent: 104 + type: Transform + - uid: 1063 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,2.5 + parent: 104 + type: Transform - proto: ChairOfficeDark entities: - uid: 1298 @@ -5634,6 +10167,18 @@ entities: - pos: 7.5027137,-12.301802 parent: 104 type: Transform +- proto: ClothingShoesBootsSalvage + entities: + - uid: 542 + components: + - pos: 19.574894,7.069533 + parent: 104 + type: Transform + - uid: 545 + components: + - pos: 19.246769,6.507033 + parent: 104 + type: Transform - proto: CombatKnife entities: - uid: 1694 @@ -6299,6 +10844,13 @@ entities: - pos: 11.5,-6.5 parent: 104 type: Transform +- proto: KitchenKnife + entities: + - uid: 1061 + components: + - pos: 18.918644,6.663283 + parent: 104 + type: Transform - proto: KitchenMicrowave entities: - uid: 10 @@ -6345,7 +10897,17 @@ entities: type: Transform - uid: 291 components: - - pos: 18.5,5.5 + - pos: 17.5,3.5 + parent: 104 + type: Transform + - uid: 540 + components: + - pos: 27.5,4.5 + parent: 104 + type: Transform + - uid: 541 + components: + - pos: 18.5,8.5 parent: 104 type: Transform - uid: 629 @@ -6586,4608 +11148,6 @@ entities: - pos: 11.5,-3.5 parent: 104 type: Transform -- proto: MountainRock - entities: - - uid: 19 - components: - - pos: 16.5,1.5 - parent: 104 - type: Transform - - uid: 20 - components: - - pos: -3.5,-10.5 - parent: 104 - type: Transform - - uid: 216 - components: - - pos: -4.5,-9.5 - parent: 104 - type: Transform - - uid: 238 - components: - - pos: -4.5,-13.5 - parent: 104 - type: Transform - - uid: 243 - components: - - pos: -4.5,-6.5 - parent: 104 - type: Transform - - uid: 244 - components: - - pos: -4.5,-8.5 - parent: 104 - type: Transform - - uid: 246 - components: - - pos: -3.5,-8.5 - parent: 104 - type: Transform - - uid: 247 - components: - - pos: -4.5,-12.5 - parent: 104 - type: Transform - - uid: 248 - components: - - pos: -4.5,-7.5 - parent: 104 - type: Transform - - uid: 249 - components: - - pos: -8.5,9.5 - parent: 104 - type: Transform - - uid: 250 - components: - - pos: 0.5,-10.5 - parent: 104 - type: Transform - - uid: 251 - components: - - pos: 15.5,1.5 - parent: 104 - type: Transform - - uid: 255 - components: - - pos: -3.5,-7.5 - parent: 104 - type: Transform - - uid: 257 - components: - - pos: 15.5,0.5 - parent: 104 - type: Transform - - uid: 259 - components: - - pos: -4.5,-10.5 - parent: 104 - type: Transform - - uid: 263 - components: - - pos: -4.5,-11.5 - parent: 104 - type: Transform - - uid: 277 - components: - - pos: -10.5,22.5 - parent: 104 - type: Transform - - uid: 292 - components: - - pos: -9.5,21.5 - parent: 104 - type: Transform - - uid: 294 - components: - - pos: -10.5,21.5 - parent: 104 - type: Transform - - uid: 295 - components: - - pos: -11.5,22.5 - parent: 104 - type: Transform - - uid: 296 - components: - - pos: -20.5,9.5 - parent: 104 - type: Transform - - uid: 358 - components: - - pos: -22.5,21.5 - parent: 104 - type: Transform - - uid: 359 - components: - - pos: -22.5,15.5 - parent: 104 - type: Transform - - uid: 360 - components: - - pos: -22.5,16.5 - parent: 104 - type: Transform - - uid: 361 - components: - - pos: -21.5,17.5 - parent: 104 - type: Transform - - uid: 362 - components: - - pos: -21.5,16.5 - parent: 104 - type: Transform - - uid: 363 - components: - - pos: -21.5,15.5 - parent: 104 - type: Transform - - uid: 364 - components: - - pos: -21.5,14.5 - parent: 104 - type: Transform - - uid: 365 - components: - - pos: -22.5,14.5 - parent: 104 - type: Transform - - uid: 366 - components: - - pos: -21.5,13.5 - parent: 104 - type: Transform - - uid: 367 - components: - - pos: -21.5,20.5 - parent: 104 - type: Transform - - uid: 368 - components: - - pos: -21.5,21.5 - parent: 104 - type: Transform - - uid: 369 - components: - - pos: -20.5,21.5 - parent: 104 - type: Transform - - uid: 370 - components: - - pos: -19.5,21.5 - parent: 104 - type: Transform - - uid: 371 - components: - - pos: -20.5,22.5 - parent: 104 - type: Transform - - uid: 372 - components: - - pos: -18.5,21.5 - parent: 104 - type: Transform - - uid: 373 - components: - - pos: -20.5,8.5 - parent: 104 - type: Transform - - uid: 374 - components: - - pos: -22.5,22.5 - parent: 104 - type: Transform - - uid: 375 - components: - - pos: -21.5,22.5 - parent: 104 - type: Transform - - uid: 376 - components: - - pos: -23.5,22.5 - parent: 104 - type: Transform - - uid: 377 - components: - - pos: -20.5,15.5 - parent: 104 - type: Transform - - uid: 401 - components: - - pos: -20.5,20.5 - parent: 104 - type: Transform - - uid: 402 - components: - - pos: -20.5,19.5 - parent: 104 - type: Transform - - uid: 403 - components: - - pos: -20.5,18.5 - parent: 104 - type: Transform - - uid: 404 - components: - - pos: -20.5,17.5 - parent: 104 - type: Transform - - uid: 405 - components: - - pos: -20.5,16.5 - parent: 104 - type: Transform - - uid: 406 - components: - - pos: -20.5,14.5 - parent: 104 - type: Transform - - uid: 407 - components: - - pos: -24.5,23.5 - parent: 104 - type: Transform - - uid: 408 - components: - - pos: -24.5,22.5 - parent: 104 - type: Transform - - uid: 409 - components: - - pos: -20.5,10.5 - parent: 104 - type: Transform - - uid: 410 - components: - - pos: -9.5,22.5 - parent: 104 - type: Transform - - uid: 415 - components: - - pos: -18.5,23.5 - parent: 104 - type: Transform - - uid: 417 - components: - - pos: -16.5,6.5 - parent: 104 - type: Transform - - uid: 419 - components: - - pos: -7.5,21.5 - parent: 104 - type: Transform - - uid: 420 - components: - - pos: -8.5,21.5 - parent: 104 - type: Transform - - uid: 421 - components: - - pos: -10.5,23.5 - parent: 104 - type: Transform - - uid: 422 - components: - - pos: -11.5,23.5 - parent: 104 - type: Transform - - uid: 423 - components: - - pos: -19.5,22.5 - parent: 104 - type: Transform - - uid: 425 - components: - - pos: -18.5,22.5 - parent: 104 - type: Transform - - uid: 426 - components: - - pos: -7.5,12.5 - parent: 104 - type: Transform - - uid: 455 - components: - - pos: 1.5,-19.5 - parent: 104 - type: Transform - - uid: 469 - components: - - pos: -8.5,10.5 - parent: 104 - type: Transform - - uid: 471 - components: - - pos: -9.5,10.5 - parent: 104 - type: Transform - - uid: 473 - components: - - pos: -8.5,11.5 - parent: 104 - type: Transform - - uid: 475 - components: - - pos: -9.5,11.5 - parent: 104 - type: Transform - - uid: 477 - components: - - pos: 16.5,0.5 - parent: 104 - type: Transform - - uid: 478 - components: - - pos: -6.5,12.5 - parent: 104 - type: Transform - - uid: 479 - components: - - pos: -2.5,-18.5 - parent: 104 - type: Transform - - uid: 480 - components: - - pos: -2.5,-19.5 - parent: 104 - type: Transform - - uid: 483 - components: - - pos: -2.5,-10.5 - parent: 104 - type: Transform - - uid: 485 - components: - - pos: -2.5,-6.5 - parent: 104 - type: Transform - - uid: 488 - components: - - pos: -2.5,-7.5 - parent: 104 - type: Transform - - uid: 489 - components: - - pos: -2.5,-8.5 - parent: 104 - type: Transform - - uid: 492 - components: - - pos: -3.5,-20.5 - parent: 104 - type: Transform - - uid: 502 - components: - - pos: -3.5,-18.5 - parent: 104 - type: Transform - - uid: 504 - components: - - pos: -2.5,-9.5 - parent: 104 - type: Transform - - uid: 505 - components: - - pos: -3.5,-19.5 - parent: 104 - type: Transform - - uid: 506 - components: - - pos: 17.5,-1.5 - parent: 104 - type: Transform - - uid: 509 - components: - - pos: -4.5,-19.5 - parent: 104 - type: Transform - - uid: 511 - components: - - pos: -4.5,-18.5 - parent: 104 - type: Transform - - uid: 512 - components: - - pos: -9.5,12.5 - parent: 104 - type: Transform - - uid: 513 - components: - - pos: -3.5,-9.5 - parent: 104 - type: Transform - - uid: 521 - components: - - pos: -4.5,-14.5 - parent: 104 - type: Transform - - uid: 522 - components: - - pos: -1.5,19.5 - parent: 104 - type: Transform - - uid: 524 - components: - - pos: -0.5,19.5 - parent: 104 - type: Transform - - uid: 525 - components: - - pos: 9.5,20.5 - parent: 104 - type: Transform - - uid: 529 - components: - - pos: 10.5,19.5 - parent: 104 - type: Transform - - uid: 531 - components: - - pos: 11.5,19.5 - parent: 104 - type: Transform - - uid: 532 - components: - - pos: 12.5,19.5 - parent: 104 - type: Transform - - uid: 533 - components: - - pos: 16.5,19.5 - parent: 104 - type: Transform - - uid: 534 - components: - - pos: 17.5,19.5 - parent: 104 - type: Transform - - uid: 535 - components: - - pos: 18.5,19.5 - parent: 104 - type: Transform - - uid: 536 - components: - - pos: 18.5,11.5 - parent: 104 - type: Transform - - uid: 537 - components: - - pos: 18.5,12.5 - parent: 104 - type: Transform - - uid: 538 - components: - - pos: 18.5,15.5 - parent: 104 - type: Transform - - uid: 539 - components: - - pos: 18.5,18.5 - parent: 104 - type: Transform - - uid: 540 - components: - - pos: 22.5,3.5 - parent: 104 - type: Transform - - uid: 541 - components: - - pos: 23.5,3.5 - parent: 104 - type: Transform - - uid: 542 - components: - - pos: 24.5,3.5 - parent: 104 - type: Transform - - uid: 543 - components: - - pos: 25.5,3.5 - parent: 104 - type: Transform - - uid: 544 - components: - - pos: 26.5,3.5 - parent: 104 - type: Transform - - uid: 545 - components: - - pos: 27.5,3.5 - parent: 104 - type: Transform - - uid: 546 - components: - - pos: 28.5,3.5 - parent: 104 - type: Transform - - uid: 547 - components: - - pos: 29.5,3.5 - parent: 104 - type: Transform - - uid: 548 - components: - - pos: 30.5,3.5 - parent: 104 - type: Transform - - uid: 549 - components: - - pos: 22.5,-22.5 - parent: 104 - type: Transform - - uid: 550 - components: - - pos: 31.5,-20.5 - parent: 104 - type: Transform - - uid: 551 - components: - - pos: 31.5,-19.5 - parent: 104 - type: Transform - - uid: 552 - components: - - pos: 31.5,-18.5 - parent: 104 - type: Transform - - uid: 553 - components: - - pos: 31.5,-17.5 - parent: 104 - type: Transform - - uid: 554 - components: - - pos: 31.5,-16.5 - parent: 104 - type: Transform - - uid: 555 - components: - - pos: 31.5,-15.5 - parent: 104 - type: Transform - - uid: 556 - components: - - pos: 31.5,-14.5 - parent: 104 - type: Transform - - uid: 557 - components: - - pos: 31.5,-13.5 - parent: 104 - type: Transform - - uid: 558 - components: - - pos: 31.5,-12.5 - parent: 104 - type: Transform - - uid: 559 - components: - - pos: 31.5,-7.5 - parent: 104 - type: Transform - - uid: 560 - components: - - pos: 31.5,-6.5 - parent: 104 - type: Transform - - uid: 561 - components: - - pos: 31.5,-5.5 - parent: 104 - type: Transform - - uid: 562 - components: - - pos: 31.5,-4.5 - parent: 104 - type: Transform - - uid: 563 - components: - - pos: 31.5,-3.5 - parent: 104 - type: Transform - - uid: 564 - components: - - pos: 31.5,-2.5 - parent: 104 - type: Transform - - uid: 565 - components: - - pos: 31.5,-1.5 - parent: 104 - type: Transform - - uid: 566 - components: - - pos: 31.5,-0.5 - parent: 104 - type: Transform - - uid: 567 - components: - - pos: 31.5,0.5 - parent: 104 - type: Transform - - uid: 568 - components: - - pos: 31.5,1.5 - parent: 104 - type: Transform - - uid: 569 - components: - - pos: 17.5,-22.5 - parent: 104 - type: Transform - - uid: 570 - components: - - pos: 18.5,-22.5 - parent: 104 - type: Transform - - uid: 571 - components: - - pos: 19.5,-22.5 - parent: 104 - type: Transform - - uid: 572 - components: - - pos: 20.5,-22.5 - parent: 104 - type: Transform - - uid: 573 - components: - - pos: 21.5,-22.5 - parent: 104 - type: Transform - - uid: 574 - components: - - pos: -5.5,-22.5 - parent: 104 - type: Transform - - uid: 575 - components: - - pos: 23.5,-22.5 - parent: 104 - type: Transform - - uid: 576 - components: - - pos: 24.5,-22.5 - parent: 104 - type: Transform - - uid: 577 - components: - - pos: 25.5,-22.5 - parent: 104 - type: Transform - - uid: 578 - components: - - pos: 26.5,-22.5 - parent: 104 - type: Transform - - uid: 579 - components: - - pos: 27.5,-22.5 - parent: 104 - type: Transform - - uid: 580 - components: - - pos: 28.5,-22.5 - parent: 104 - type: Transform - - uid: 581 - components: - - pos: -4.5,-20.5 - parent: 104 - type: Transform - - uid: 582 - components: - - pos: -4.5,-15.5 - parent: 104 - type: Transform - - uid: 586 - components: - - pos: 4.5,-22.5 - parent: 104 - type: Transform - - uid: 587 - components: - - pos: 5.5,-22.5 - parent: 104 - type: Transform - - uid: 588 - components: - - pos: 6.5,-22.5 - parent: 104 - type: Transform - - uid: 589 - components: - - pos: 7.5,-22.5 - parent: 104 - type: Transform - - uid: 590 - components: - - pos: 8.5,-22.5 - parent: 104 - type: Transform - - uid: 595 - components: - - pos: -5.5,-21.5 - parent: 104 - type: Transform - - uid: 596 - components: - - pos: -5.5,-20.5 - parent: 104 - type: Transform - - uid: 597 - components: - - pos: -5.5,-19.5 - parent: 104 - type: Transform - - uid: 598 - components: - - pos: -5.5,-18.5 - parent: 104 - type: Transform - - uid: 599 - components: - - pos: -5.5,-17.5 - parent: 104 - type: Transform - - uid: 600 - components: - - pos: -5.5,-16.5 - parent: 104 - type: Transform - - uid: 601 - components: - - pos: -5.5,-15.5 - parent: 104 - type: Transform - - uid: 602 - components: - - pos: -5.5,-14.5 - parent: 104 - type: Transform - - uid: 603 - components: - - pos: -5.5,-13.5 - parent: 104 - type: Transform - - uid: 604 - components: - - pos: -5.5,-12.5 - parent: 104 - type: Transform - - uid: 605 - components: - - pos: -5.5,-11.5 - parent: 104 - type: Transform - - uid: 606 - components: - - pos: -5.5,-10.5 - parent: 104 - type: Transform - - uid: 607 - components: - - pos: -5.5,-9.5 - parent: 104 - type: Transform - - uid: 608 - components: - - pos: -5.5,-8.5 - parent: 104 - type: Transform - - uid: 609 - components: - - pos: -5.5,-7.5 - parent: 104 - type: Transform - - uid: 610 - components: - - pos: -14.5,16.5 - parent: 104 - type: Transform - - uid: 614 - components: - - pos: -16.5,15.5 - parent: 104 - type: Transform - - uid: 615 - components: - - pos: -10.5,9.5 - parent: 104 - type: Transform - - uid: 618 - components: - - pos: -8.5,12.5 - parent: 104 - type: Transform - - uid: 621 - components: - - pos: -9.5,9.5 - parent: 104 - type: Transform - - uid: 622 - components: - - pos: -10.5,10.5 - parent: 104 - type: Transform - - uid: 632 - components: - - pos: -10.5,12.5 - parent: 104 - type: Transform - - uid: 637 - components: - - pos: -10.5,11.5 - parent: 104 - type: Transform - - uid: 640 - components: - - pos: -16.5,5.5 - parent: 104 - type: Transform - - uid: 648 - components: - - pos: -11.5,13.5 - parent: 104 - type: Transform - - uid: 670 - components: - - pos: -18.5,10.5 - parent: 104 - type: Transform - - uid: 672 - components: - - pos: -16.5,16.5 - parent: 104 - type: Transform - - uid: 673 - components: - - pos: -11.5,12.5 - parent: 104 - type: Transform - - uid: 674 - components: - - pos: -19.5,15.5 - parent: 104 - type: Transform - - uid: 676 - components: - - pos: -19.5,16.5 - parent: 104 - type: Transform - - uid: 677 - components: - - pos: -18.5,11.5 - parent: 104 - type: Transform - - uid: 678 - components: - - pos: -14.5,11.5 - parent: 104 - type: Transform - - uid: 679 - components: - - pos: -14.5,17.5 - parent: 104 - type: Transform - - uid: 680 - components: - - pos: -14.5,18.5 - parent: 104 - type: Transform - - uid: 681 - components: - - pos: -15.5,14.5 - parent: 104 - type: Transform - - uid: 682 - components: - - pos: -24.5,25.5 - parent: 104 - type: Transform - - uid: 684 - components: - - pos: -17.5,13.5 - parent: 104 - type: Transform - - uid: 685 - components: - - pos: -15.5,16.5 - parent: 104 - type: Transform - - uid: 686 - components: - - pos: -12.5,12.5 - parent: 104 - type: Transform - - uid: 687 - components: - - pos: -12.5,11.5 - parent: 104 - type: Transform - - uid: 688 - components: - - pos: -11.5,14.5 - parent: 104 - type: Transform - - uid: 689 - components: - - pos: -15.5,15.5 - parent: 104 - type: Transform - - uid: 690 - components: - - pos: -14.5,14.5 - parent: 104 - type: Transform - - uid: 691 - components: - - pos: -19.5,14.5 - parent: 104 - type: Transform - - uid: 692 - components: - - pos: -13.5,16.5 - parent: 104 - type: Transform - - uid: 693 - components: - - pos: -17.5,15.5 - parent: 104 - type: Transform - - uid: 694 - components: - - pos: -11.5,9.5 - parent: 104 - type: Transform - - uid: 695 - components: - - pos: -20.5,23.5 - parent: 104 - type: Transform - - uid: 699 - components: - - pos: -18.5,8.5 - parent: 104 - type: Transform - - uid: 700 - components: - - pos: -18.5,9.5 - parent: 104 - type: Transform - - uid: 701 - components: - - pos: -13.5,12.5 - parent: 104 - type: Transform - - uid: 702 - components: - - pos: -13.5,17.5 - parent: 104 - type: Transform - - uid: 703 - components: - - pos: -13.5,18.5 - parent: 104 - type: Transform - - uid: 704 - components: - - pos: -15.5,18.5 - parent: 104 - type: Transform - - uid: 705 - components: - - pos: -17.5,14.5 - parent: 104 - type: Transform - - uid: 706 - components: - - pos: -11.5,11.5 - parent: 104 - type: Transform - - uid: 708 - components: - - pos: -17.5,11.5 - parent: 104 - type: Transform - - uid: 709 - components: - - pos: -17.5,16.5 - parent: 104 - type: Transform - - uid: 711 - components: - - pos: -17.5,10.5 - parent: 104 - type: Transform - - uid: 712 - components: - - pos: -15.5,17.5 - parent: 104 - type: Transform - - uid: 714 - components: - - pos: -11.5,17.5 - parent: 104 - type: Transform - - uid: 716 - components: - - pos: -13.5,13.5 - parent: 104 - type: Transform - - uid: 717 - components: - - pos: -13.5,14.5 - parent: 104 - type: Transform - - uid: 718 - components: - - pos: -18.5,14.5 - parent: 104 - type: Transform - - uid: 719 - components: - - pos: -18.5,15.5 - parent: 104 - type: Transform - - uid: 720 - components: - - pos: -18.5,16.5 - parent: 104 - type: Transform - - uid: 721 - components: - - pos: -17.5,8.5 - parent: 104 - type: Transform - - uid: 722 - components: - - pos: -16.5,13.5 - parent: 104 - type: Transform - - uid: 723 - components: - - pos: -16.5,14.5 - parent: 104 - type: Transform - - uid: 724 - components: - - pos: -12.5,17.5 - parent: 104 - type: Transform - - uid: 725 - components: - - pos: -12.5,18.5 - parent: 104 - type: Transform - - uid: 726 - components: - - pos: -14.5,12.5 - parent: 104 - type: Transform - - uid: 728 - components: - - pos: -14.5,13.5 - parent: 104 - type: Transform - - uid: 729 - components: - - pos: -18.5,17.5 - parent: 104 - type: Transform - - uid: 733 - components: - - pos: -18.5,18.5 - parent: 104 - type: Transform - - uid: 734 - components: - - pos: -18.5,19.5 - parent: 104 - type: Transform - - uid: 735 - components: - - pos: -12.5,13.5 - parent: 104 - type: Transform - - uid: 740 - components: - - pos: -12.5,15.5 - parent: 104 - type: Transform - - uid: 741 - components: - - pos: -19.5,17.5 - parent: 104 - type: Transform - - uid: 745 - components: - - pos: -19.5,18.5 - parent: 104 - type: Transform - - uid: 746 - components: - - pos: -19.5,19.5 - parent: 104 - type: Transform - - uid: 747 - components: - - pos: -16.5,17.5 - parent: 104 - type: Transform - - uid: 752 - components: - - pos: -16.5,18.5 - parent: 104 - type: Transform - - uid: 753 - components: - - pos: -15.5,11.5 - parent: 104 - type: Transform - - uid: 755 - components: - - pos: -15.5,12.5 - parent: 104 - type: Transform - - uid: 756 - components: - - pos: -12.5,14.5 - parent: 104 - type: Transform - - uid: 757 - components: - - pos: -16.5,12.5 - parent: 104 - type: Transform - - uid: 758 - components: - - pos: -13.5,15.5 - parent: 104 - type: Transform - - uid: 759 - components: - - pos: -19.5,9.5 - parent: 104 - type: Transform - - uid: 762 - components: - - pos: -17.5,9.5 - parent: 104 - type: Transform - - uid: 763 - components: - - pos: -17.5,17.5 - parent: 104 - type: Transform - - uid: 764 - components: - - pos: -17.5,18.5 - parent: 104 - type: Transform - - uid: 765 - components: - - pos: -16.5,11.5 - parent: 104 - type: Transform - - uid: 768 - components: - - pos: -19.5,8.5 - parent: 104 - type: Transform - - uid: 771 - components: - - pos: -6.5,13.5 - parent: 104 - type: Transform - - uid: 774 - components: - - pos: -10.5,18.5 - parent: 104 - type: Transform - - uid: 775 - components: - - pos: -10.5,17.5 - parent: 104 - type: Transform - - uid: 776 - components: - - pos: -10.5,16.5 - parent: 104 - type: Transform - - uid: 777 - components: - - pos: -10.5,15.5 - parent: 104 - type: Transform - - uid: 778 - components: - - pos: -10.5,14.5 - parent: 104 - type: Transform - - uid: 779 - components: - - pos: -10.5,13.5 - parent: 104 - type: Transform - - uid: 780 - components: - - pos: -9.5,19.5 - parent: 104 - type: Transform - - uid: 781 - components: - - pos: -9.5,18.5 - parent: 104 - type: Transform - - uid: 782 - components: - - pos: -9.5,17.5 - parent: 104 - type: Transform - - uid: 783 - components: - - pos: -9.5,16.5 - parent: 104 - type: Transform - - uid: 784 - components: - - pos: -9.5,15.5 - parent: 104 - type: Transform - - uid: 785 - components: - - pos: -9.5,14.5 - parent: 104 - type: Transform - - uid: 786 - components: - - pos: -9.5,13.5 - parent: 104 - type: Transform - - uid: 787 - components: - - pos: -8.5,19.5 - parent: 104 - type: Transform - - uid: 788 - components: - - pos: -8.5,18.5 - parent: 104 - type: Transform - - uid: 789 - components: - - pos: -8.5,17.5 - parent: 104 - type: Transform - - uid: 790 - components: - - pos: -8.5,15.5 - parent: 104 - type: Transform - - uid: 791 - components: - - pos: -8.5,14.5 - parent: 104 - type: Transform - - uid: 792 - components: - - pos: -8.5,13.5 - parent: 104 - type: Transform - - uid: 793 - components: - - pos: -7.5,19.5 - parent: 104 - type: Transform - - uid: 794 - components: - - pos: -7.5,18.5 - parent: 104 - type: Transform - - uid: 795 - components: - - pos: -7.5,15.5 - parent: 104 - type: Transform - - uid: 796 - components: - - pos: -7.5,14.5 - parent: 104 - type: Transform - - uid: 797 - components: - - pos: -7.5,13.5 - parent: 104 - type: Transform - - uid: 798 - components: - - pos: -15.5,13.5 - parent: 104 - type: Transform - - uid: 801 - components: - - pos: -12.5,16.5 - parent: 104 - type: Transform - - uid: 802 - components: - - pos: -14.5,15.5 - parent: 104 - type: Transform - - uid: 803 - components: - - pos: -19.5,23.5 - parent: 104 - type: Transform - - uid: 804 - components: - - pos: -24.5,24.5 - parent: 104 - type: Transform - - uid: 805 - components: - - pos: -19.5,10.5 - parent: 104 - type: Transform - - uid: 806 - components: - - pos: -17.5,12.5 - parent: 104 - type: Transform - - uid: 807 - components: - - pos: -11.5,16.5 - parent: 104 - type: Transform - - uid: 808 - components: - - pos: -11.5,15.5 - parent: 104 - type: Transform - - uid: 809 - components: - - pos: -13.5,11.5 - parent: 104 - type: Transform - - uid: 810 - components: - - pos: -19.5,20.5 - parent: 104 - type: Transform - - uid: 1020 - components: - - pos: -18.5,20.5 - parent: 104 - type: Transform - - uid: 1021 - components: - - pos: -10.5,20.5 - parent: 104 - type: Transform - - uid: 1027 - components: - - pos: -9.5,20.5 - parent: 104 - type: Transform - - uid: 1028 - components: - - pos: -8.5,20.5 - parent: 104 - type: Transform - - uid: 1029 - components: - - pos: -7.5,20.5 - parent: 104 - type: Transform - - uid: 1030 - components: - - pos: -2.5,20.5 - parent: 104 - type: Transform - - uid: 1031 - components: - - pos: -1.5,20.5 - parent: 104 - type: Transform - - uid: 1032 - components: - - pos: -0.5,20.5 - parent: 104 - type: Transform - - uid: 1033 - components: - - pos: 9.5,22.5 - parent: 104 - type: Transform - - uid: 1036 - components: - - pos: 10.5,20.5 - parent: 104 - type: Transform - - uid: 1041 - components: - - pos: 11.5,20.5 - parent: 104 - type: Transform - - uid: 1042 - components: - - pos: 12.5,20.5 - parent: 104 - type: Transform - - uid: 1043 - components: - - pos: 13.5,20.5 - parent: 104 - type: Transform - - uid: 1044 - components: - - pos: 16.5,20.5 - parent: 104 - type: Transform - - uid: 1045 - components: - - pos: 17.5,20.5 - parent: 104 - type: Transform - - uid: 1046 - components: - - pos: 18.5,20.5 - parent: 104 - type: Transform - - uid: 1047 - components: - - pos: 19.5,20.5 - parent: 104 - type: Transform - - uid: 1048 - components: - - pos: 19.5,19.5 - parent: 104 - type: Transform - - uid: 1049 - components: - - pos: 19.5,18.5 - parent: 104 - type: Transform - - uid: 1050 - components: - - pos: 19.5,16.5 - parent: 104 - type: Transform - - uid: 1051 - components: - - pos: 19.5,15.5 - parent: 104 - type: Transform - - uid: 1052 - components: - - pos: 19.5,14.5 - parent: 104 - type: Transform - - uid: 1053 - components: - - pos: 19.5,12.5 - parent: 104 - type: Transform - - uid: 1054 - components: - - pos: 19.5,11.5 - parent: 104 - type: Transform - - uid: 1055 - components: - - pos: 19.5,10.5 - parent: 104 - type: Transform - - uid: 1056 - components: - - pos: -11.5,20.5 - parent: 104 - type: Transform - - uid: 1057 - components: - - pos: 15.5,3.5 - parent: 104 - type: Transform - - uid: 1058 - components: - - pos: 22.5,4.5 - parent: 104 - type: Transform - - uid: 1059 - components: - - pos: 23.5,4.5 - parent: 104 - type: Transform - - uid: 1060 - components: - - pos: 24.5,4.5 - parent: 104 - type: Transform - - uid: 1061 - components: - - pos: 25.5,4.5 - parent: 104 - type: Transform - - uid: 1062 - components: - - pos: 26.5,4.5 - parent: 104 - type: Transform - - uid: 1063 - components: - - pos: 27.5,4.5 - parent: 104 - type: Transform - - uid: 1064 - components: - - pos: 28.5,4.5 - parent: 104 - type: Transform - - uid: 1065 - components: - - pos: 29.5,4.5 - parent: 104 - type: Transform - - uid: 1066 - components: - - pos: 30.5,4.5 - parent: 104 - type: Transform - - uid: 1067 - components: - - pos: 32.5,0.5 - parent: 104 - type: Transform - - uid: 1068 - components: - - pos: 32.5,-0.5 - parent: 104 - type: Transform - - uid: 1069 - components: - - pos: 32.5,-3.5 - parent: 104 - type: Transform - - uid: 1070 - components: - - pos: 32.5,-12.5 - parent: 104 - type: Transform - - uid: 1071 - components: - - pos: 32.5,-13.5 - parent: 104 - type: Transform - - uid: 1072 - components: - - pos: 32.5,-14.5 - parent: 104 - type: Transform - - uid: 1073 - components: - - pos: 32.5,-15.5 - parent: 104 - type: Transform - - uid: 1074 - components: - - pos: 32.5,-16.5 - parent: 104 - type: Transform - - uid: 1075 - components: - - pos: 32.5,-17.5 - parent: 104 - type: Transform - - uid: 1076 - components: - - pos: 32.5,-18.5 - parent: 104 - type: Transform - - uid: 1077 - components: - - pos: 32.5,-19.5 - parent: 104 - type: Transform - - uid: 1078 - components: - - pos: 32.5,-20.5 - parent: 104 - type: Transform - - uid: 1079 - components: - - pos: 32.5,-21.5 - parent: 104 - type: Transform - - uid: 1083 - components: - - pos: -4.5,-16.5 - parent: 104 - type: Transform - - uid: 1084 - components: - - pos: -4.5,-21.5 - parent: 104 - type: Transform - - uid: 1085 - components: - - pos: 28.5,-23.5 - parent: 104 - type: Transform - - uid: 1092 - components: - - pos: 27.5,-23.5 - parent: 104 - type: Transform - - uid: 1093 - components: - - pos: 26.5,-23.5 - parent: 104 - type: Transform - - uid: 1094 - components: - - pos: 25.5,-23.5 - parent: 104 - type: Transform - - uid: 1095 - components: - - pos: 24.5,-23.5 - parent: 104 - type: Transform - - uid: 1096 - components: - - pos: 23.5,-23.5 - parent: 104 - type: Transform - - uid: 1097 - components: - - pos: 22.5,-23.5 - parent: 104 - type: Transform - - uid: 1098 - components: - - pos: 21.5,-23.5 - parent: 104 - type: Transform - - uid: 1099 - components: - - pos: 20.5,-23.5 - parent: 104 - type: Transform - - uid: 1100 - components: - - pos: 19.5,-23.5 - parent: 104 - type: Transform - - uid: 1101 - components: - - pos: 18.5,-23.5 - parent: 104 - type: Transform - - uid: 1105 - components: - - pos: 8.5,-23.5 - parent: 104 - type: Transform - - uid: 1106 - components: - - pos: 7.5,-23.5 - parent: 104 - type: Transform - - uid: 1107 - components: - - pos: 6.5,-23.5 - parent: 104 - type: Transform - - uid: 1108 - components: - - pos: 5.5,-23.5 - parent: 104 - type: Transform - - uid: 1109 - components: - - pos: -23.5,23.5 - parent: 104 - type: Transform - - uid: 1155 - components: - - pos: -23.5,24.5 - parent: 104 - type: Transform - - uid: 1156 - components: - - pos: -23.5,25.5 - parent: 104 - type: Transform - - uid: 1157 - components: - - pos: -22.5,32.5 - parent: 104 - type: Transform - - uid: 1158 - components: - - pos: -23.5,30.5 - parent: 104 - type: Transform - - uid: 1160 - components: - - pos: -23.5,31.5 - parent: 104 - type: Transform - - uid: 1161 - components: - - pos: -22.5,23.5 - parent: 104 - type: Transform - - uid: 1162 - components: - - pos: -22.5,24.5 - parent: 104 - type: Transform - - uid: 1163 - components: - - pos: -22.5,25.5 - parent: 104 - type: Transform - - uid: 1164 - components: - - pos: -21.5,26.5 - parent: 104 - type: Transform - - uid: 1165 - components: - - pos: -22.5,30.5 - parent: 104 - type: Transform - - uid: 1166 - components: - - pos: -21.5,30.5 - parent: 104 - type: Transform - - uid: 1167 - components: - - pos: -24.5,31.5 - parent: 104 - type: Transform - - uid: 1168 - components: - - pos: -23.5,20.5 - parent: 104 - type: Transform - - uid: 1169 - components: - - pos: -24.5,21.5 - parent: 104 - type: Transform - - uid: 1170 - components: - - pos: -22.5,31.5 - parent: 104 - type: Transform - - uid: 1171 - components: - - pos: -25.5,30.5 - parent: 104 - type: Transform - - uid: 1172 - components: - - pos: -25.5,31.5 - parent: 104 - type: Transform - - uid: 1173 - components: - - pos: -25.5,32.5 - parent: 104 - type: Transform - - uid: 1174 - components: - - pos: -23.5,21.5 - parent: 104 - type: Transform - - uid: 1175 - components: - - pos: -23.5,29.5 - parent: 104 - type: Transform - - uid: 1176 - components: - - pos: -22.5,20.5 - parent: 104 - type: Transform - - uid: 1177 - components: - - pos: -23.5,15.5 - parent: 104 - type: Transform - - uid: 1178 - components: - - pos: -23.5,13.5 - parent: 104 - type: Transform - - uid: 1179 - components: - - pos: -22.5,13.5 - parent: 104 - type: Transform - - uid: 1180 - components: - - pos: -11.5,10.5 - parent: 104 - type: Transform - - uid: 1224 - components: - - pos: -23.5,14.5 - parent: 104 - type: Transform - - uid: 1250 - components: - - pos: 1.5,-10.5 - parent: 104 - type: Transform - - uid: 1390 - components: - - pos: -0.5,-10.5 - parent: 104 - type: Transform - - uid: 1391 - components: - - pos: -23.5,28.5 - parent: 104 - type: Transform - - uid: 1392 - components: - - pos: -24.5,30.5 - parent: 104 - type: Transform - - uid: 1393 - components: - - pos: -23.5,32.5 - parent: 104 - type: Transform - - uid: 1394 - components: - - pos: -22.5,26.5 - parent: 104 - type: Transform - - uid: 1395 - components: - - pos: -23.5,26.5 - parent: 104 - type: Transform - - uid: 1396 - components: - - pos: -24.5,32.5 - parent: 104 - type: Transform - - uid: 1397 - components: - - pos: -23.5,27.5 - parent: 104 - type: Transform - - uid: 1398 - components: - - pos: -22.5,28.5 - parent: 104 - type: Transform - - uid: 1399 - components: - - pos: -21.5,29.5 - parent: 104 - type: Transform - - uid: 1400 - components: - - pos: -22.5,29.5 - parent: 104 - type: Transform - - uid: 1401 - components: - - pos: -22.5,27.5 - parent: 104 - type: Transform - - uid: 1402 - components: - - pos: -21.5,27.5 - parent: 104 - type: Transform - - uid: 1403 - components: - - pos: -21.5,28.5 - parent: 104 - type: Transform - - uid: 1404 - components: - - pos: -21.5,25.5 - parent: 104 - type: Transform - - uid: 1405 - components: - - pos: -21.5,24.5 - parent: 104 - type: Transform - - uid: 1406 - components: - - pos: -21.5,23.5 - parent: 104 - type: Transform - - uid: 1407 - components: - - pos: 6.5,-24.5 - parent: 104 - type: Transform - - uid: 1408 - components: - - pos: 7.5,-24.5 - parent: 104 - type: Transform - - uid: 1415 - components: - - pos: 3.5,-21.5 - parent: 104 - type: Transform - - uid: 1416 - components: - - pos: 4.5,-21.5 - parent: 104 - type: Transform - - uid: 1417 - components: - - pos: 20.5,-24.5 - parent: 104 - type: Transform - - uid: 1418 - components: - - pos: 21.5,-24.5 - parent: 104 - type: Transform - - uid: 1419 - components: - - pos: 22.5,-24.5 - parent: 104 - type: Transform - - uid: 1420 - components: - - pos: 23.5,-24.5 - parent: 104 - type: Transform - - uid: 1421 - components: - - pos: 24.5,-24.5 - parent: 104 - type: Transform - - uid: 1422 - components: - - pos: 25.5,-24.5 - parent: 104 - type: Transform - - uid: 1423 - components: - - pos: 26.5,-24.5 - parent: 104 - type: Transform - - uid: 1424 - components: - - pos: 27.5,-24.5 - parent: 104 - type: Transform - - uid: 1425 - components: - - pos: -4.5,-22.5 - parent: 104 - type: Transform - - uid: 1427 - components: - - pos: -4.5,-17.5 - parent: 104 - type: Transform - - uid: 1433 - components: - - pos: 5.5,-24.5 - parent: 104 - type: Transform - - uid: 1434 - components: - - pos: 33.5,-21.5 - parent: 104 - type: Transform - - uid: 1435 - components: - - pos: 33.5,-20.5 - parent: 104 - type: Transform - - uid: 1436 - components: - - pos: 33.5,-19.5 - parent: 104 - type: Transform - - uid: 1437 - components: - - pos: 33.5,-18.5 - parent: 104 - type: Transform - - uid: 1440 - components: - - pos: 33.5,-17.5 - parent: 104 - type: Transform - - uid: 1441 - components: - - pos: 33.5,-16.5 - parent: 104 - type: Transform - - uid: 1442 - components: - - pos: 33.5,-15.5 - parent: 104 - type: Transform - - uid: 1443 - components: - - pos: 33.5,-14.5 - parent: 104 - type: Transform - - uid: 1444 - components: - - pos: 33.5,-13.5 - parent: 104 - type: Transform - - uid: 1446 - components: - - pos: 33.5,-12.5 - parent: 104 - type: Transform - - uid: 1447 - components: - - pos: 30.5,5.5 - parent: 104 - type: Transform - - uid: 1448 - components: - - pos: 29.5,5.5 - parent: 104 - type: Transform - - uid: 1472 - components: - - pos: 28.5,5.5 - parent: 104 - type: Transform - - uid: 1473 - components: - - pos: 27.5,5.5 - parent: 104 - type: Transform - - uid: 1533 - components: - - pos: 26.5,5.5 - parent: 104 - type: Transform - - uid: 1535 - components: - - pos: 25.5,5.5 - parent: 104 - type: Transform - - uid: 1542 - components: - - pos: 24.5,5.5 - parent: 104 - type: Transform - - uid: 1550 - components: - - pos: 23.5,5.5 - parent: 104 - type: Transform - - uid: 1552 - components: - - pos: 22.5,5.5 - parent: 104 - type: Transform - - uid: 1553 - components: - - pos: 21.5,5.5 - parent: 104 - type: Transform - - uid: 1554 - components: - - pos: 20.5,5.5 - parent: 104 - type: Transform - - uid: 1557 - components: - - pos: 19.5,19.5 - parent: 104 - type: Transform - - uid: 1559 - components: - - pos: 19.5,20.5 - parent: 104 - type: Transform - - uid: 1560 - components: - - pos: 19.5,21.5 - parent: 104 - type: Transform - - uid: 1562 - components: - - pos: -11.5,19.5 - parent: 104 - type: Transform - - uid: 1564 - components: - - pos: -11.5,18.5 - parent: 104 - type: Transform - - uid: 1566 - components: - - pos: 20.5,9.5 - parent: 104 - type: Transform - - uid: 1567 - components: - - pos: 20.5,10.5 - parent: 104 - type: Transform - - uid: 1568 - components: - - pos: 20.5,11.5 - parent: 104 - type: Transform - - uid: 1569 - components: - - pos: 20.5,12.5 - parent: 104 - type: Transform - - uid: 1594 - components: - - pos: 20.5,13.5 - parent: 104 - type: Transform - - uid: 1598 - components: - - pos: 20.5,14.5 - parent: 104 - type: Transform - - uid: 1599 - components: - - pos: 20.5,15.5 - parent: 104 - type: Transform - - uid: 1600 - components: - - pos: 20.5,16.5 - parent: 104 - type: Transform - - uid: 1601 - components: - - pos: 20.5,17.5 - parent: 104 - type: Transform - - uid: 1602 - components: - - pos: 20.5,18.5 - parent: 104 - type: Transform - - uid: 1603 - components: - - pos: 20.5,19.5 - parent: 104 - type: Transform - - uid: 1604 - components: - - pos: 20.5,20.5 - parent: 104 - type: Transform - - uid: 1605 - components: - - pos: 20.5,21.5 - parent: 104 - type: Transform - - uid: 1606 - components: - - pos: -10.5,19.5 - parent: 104 - type: Transform - - uid: 1607 - components: - - pos: 19.5,11.5 - parent: 104 - type: Transform - - uid: 1608 - components: - - pos: 19.5,12.5 - parent: 104 - type: Transform - - uid: 1609 - components: - - pos: 19.5,15.5 - parent: 104 - type: Transform - - uid: 1610 - components: - - pos: 18.5,21.5 - parent: 104 - type: Transform - - uid: 1611 - components: - - pos: 17.5,21.5 - parent: 104 - type: Transform - - uid: 1612 - components: - - pos: 16.5,21.5 - parent: 104 - type: Transform - - uid: 1613 - components: - - pos: 15.5,21.5 - parent: 104 - type: Transform - - uid: 1614 - components: - - pos: 14.5,21.5 - parent: 104 - type: Transform - - uid: 1615 - components: - - pos: 13.5,21.5 - parent: 104 - type: Transform - - uid: 1616 - components: - - pos: 12.5,21.5 - parent: 104 - type: Transform - - uid: 1623 - components: - - pos: 11.5,21.5 - parent: 104 - type: Transform - - uid: 1625 - components: - - pos: 10.5,21.5 - parent: 104 - type: Transform - - uid: 1632 - components: - - pos: 9.5,21.5 - parent: 104 - type: Transform - - uid: 1636 - components: - - pos: -0.5,21.5 - parent: 104 - type: Transform - - uid: 1637 - components: - - pos: -1.5,21.5 - parent: 104 - type: Transform - - uid: 1638 - components: - - pos: -2.5,21.5 - parent: 104 - type: Transform - - uid: 1639 - components: - - pos: -0.5,22.5 - parent: 104 - type: Transform - - uid: 1640 - components: - - pos: -1.5,22.5 - parent: 104 - type: Transform - - uid: 1641 - components: - - pos: -2.5,22.5 - parent: 104 - type: Transform - - uid: 1642 - components: - - pos: -3.5,22.5 - parent: 104 - type: Transform - - uid: 1643 - components: - - pos: -7.5,22.5 - parent: 104 - type: Transform - - uid: 1644 - components: - - pos: -8.5,22.5 - parent: 104 - type: Transform - - uid: 1645 - components: - - pos: -8.5,23.5 - parent: 104 - type: Transform - - uid: 1646 - components: - - pos: -9.5,23.5 - parent: 104 - type: Transform - - uid: 1647 - components: - - pos: -10.5,23.5 - parent: 104 - type: Transform - - uid: 1649 - components: - - pos: 28.5,7.5 - parent: 104 - type: Transform - - uid: 1650 - components: - - pos: 28.5,8.5 - parent: 104 - type: Transform - - uid: 1651 - components: - - pos: 22.5,13.5 - parent: 104 - type: Transform - - uid: 1657 - components: - - pos: 23.5,13.5 - parent: 104 - type: Transform - - uid: 1658 - components: - - pos: 17.5,22.5 - parent: 104 - type: Transform - - uid: 1659 - components: - - pos: 24.5,16.5 - parent: 104 - type: Transform - - uid: 1660 - components: - - pos: 24.5,15.5 - parent: 104 - type: Transform - - uid: 1661 - components: - - pos: 24.5,14.5 - parent: 104 - type: Transform - - uid: 1662 - components: - - pos: 23.5,17.5 - parent: 104 - type: Transform - - uid: 1663 - components: - - pos: 28.5,6.5 - parent: 104 - type: Transform - - uid: 1664 - components: - - pos: 23.5,14.5 - parent: 104 - type: Transform - - uid: 1665 - components: - - pos: 22.5,14.5 - parent: 104 - type: Transform - - uid: 1666 - components: - - pos: 23.5,12.5 - parent: 104 - type: Transform - - uid: 1667 - components: - - pos: 21.5,8.5 - parent: 104 - type: Transform - - uid: 1674 - components: - - pos: 25.5,6.5 - parent: 104 - type: Transform - - uid: 1676 - components: - - pos: 24.5,9.5 - parent: 104 - type: Transform - - uid: 1677 - components: - - pos: 24.5,10.5 - parent: 104 - type: Transform - - uid: 1678 - components: - - pos: 24.5,17.5 - parent: 104 - type: Transform - - uid: 1679 - components: - - pos: 23.5,16.5 - parent: 104 - type: Transform - - uid: 1682 - components: - - pos: 23.5,15.5 - parent: 104 - type: Transform - - uid: 1683 - components: - - pos: 24.5,11.5 - parent: 104 - type: Transform - - uid: 1684 - components: - - pos: 24.5,6.5 - parent: 104 - type: Transform - - uid: 1685 - components: - - pos: 23.5,11.5 - parent: 104 - type: Transform - - uid: 1686 - components: - - pos: 21.5,9.5 - parent: 104 - type: Transform - - uid: 1687 - components: - - pos: 27.5,7.5 - parent: 104 - type: Transform - - uid: 1688 - components: - - pos: 27.5,8.5 - parent: 104 - type: Transform - - uid: 1689 - components: - - pos: 26.5,6.5 - parent: 104 - type: Transform - - uid: 1690 - components: - - pos: 26.5,7.5 - parent: 104 - type: Transform - - uid: 1691 - components: - - pos: 26.5,8.5 - parent: 104 - type: Transform - - uid: 1692 - components: - - pos: 22.5,15.5 - parent: 104 - type: Transform - - uid: 1693 - components: - - pos: 24.5,12.5 - parent: 104 - type: Transform - - uid: 1695 - components: - - pos: 23.5,10.5 - parent: 104 - type: Transform - - uid: 1696 - components: - - pos: 22.5,10.5 - parent: 104 - type: Transform - - uid: 1697 - components: - - pos: 25.5,7.5 - parent: 104 - type: Transform - - uid: 1698 - components: - - pos: 12.5,22.5 - parent: 104 - type: Transform - - uid: 1699 - components: - - pos: 25.5,8.5 - parent: 104 - type: Transform - - uid: 1700 - components: - - pos: 25.5,9.5 - parent: 104 - type: Transform - - uid: 1701 - components: - - pos: 25.5,10.5 - parent: 104 - type: Transform - - uid: 1702 - components: - - pos: 13.5,22.5 - parent: 104 - type: Transform - - uid: 1703 - components: - - pos: 24.5,7.5 - parent: 104 - type: Transform - - uid: 1709 - components: - - pos: 24.5,13.5 - parent: 104 - type: Transform - - uid: 1710 - components: - - pos: 22.5,8.5 - parent: 104 - type: Transform - - uid: 1712 - components: - - pos: 22.5,9.5 - parent: 104 - type: Transform - - uid: 1713 - components: - - pos: 11.5,22.5 - parent: 104 - type: Transform - - uid: 1714 - components: - - pos: 25.5,11.5 - parent: 104 - type: Transform - - uid: 1715 - components: - - pos: 22.5,16.5 - parent: 104 - type: Transform - - uid: 1716 - components: - - pos: 22.5,17.5 - parent: 104 - type: Transform - - uid: 1717 - components: - - pos: 19.5,22.5 - parent: 104 - type: Transform - - uid: 1718 - components: - - pos: 22.5,7.5 - parent: 104 - type: Transform - - uid: 1719 - components: - - pos: 21.5,13.5 - parent: 104 - type: Transform - - uid: 1720 - components: - - pos: 23.5,9.5 - parent: 104 - type: Transform - - uid: 1721 - components: - - pos: 21.5,11.5 - parent: 104 - type: Transform - - uid: 1722 - components: - - pos: 22.5,11.5 - parent: 104 - type: Transform - - uid: 1723 - components: - - pos: 10.5,22.5 - parent: 104 - type: Transform - - uid: 1724 - components: - - pos: 22.5,18.5 - parent: 104 - type: Transform - - uid: 1725 - components: - - pos: 16.5,22.5 - parent: 104 - type: Transform - - uid: 1726 - components: - - pos: 15.5,22.5 - parent: 104 - type: Transform - - uid: 1727 - components: - - pos: 14.5,22.5 - parent: 104 - type: Transform - - uid: 1728 - components: - - pos: 24.5,8.5 - parent: 104 - type: Transform - - uid: 1729 - components: - - pos: 23.5,13.5 - parent: 104 - type: Transform - - uid: 1730 - components: - - pos: 23.5,8.5 - parent: 104 - type: Transform - - uid: 1731 - components: - - pos: -11.5,21.5 - parent: 104 - type: Transform - - uid: 1732 - components: - - pos: 22.5,12.5 - parent: 104 - type: Transform - - uid: 1733 - components: - - pos: 27.5,6.5 - parent: 104 - type: Transform - - uid: 1734 - components: - - pos: 22.5,19.5 - parent: 104 - type: Transform - - uid: 1735 - components: - - pos: 18.5,22.5 - parent: 104 - type: Transform - - uid: 1736 - components: - - pos: 21.5,21.5 - parent: 104 - type: Transform - - uid: 1737 - components: - - pos: 23.5,6.5 - parent: 104 - type: Transform - - uid: 1738 - components: - - pos: 22.5,6.5 - parent: 104 - type: Transform - - uid: 1739 - components: - - pos: 23.5,7.5 - parent: 104 - type: Transform - - uid: 1740 - components: - - pos: -11.5,20.5 - parent: 104 - type: Transform - - uid: 1741 - components: - - pos: 21.5,10.5 - parent: 104 - type: Transform - - uid: 1742 - components: - - pos: 21.5,20.5 - parent: 104 - type: Transform - - uid: 1743 - components: - - pos: 20.5,22.5 - parent: 104 - type: Transform - - uid: 1744 - components: - - pos: 21.5,19.5 - parent: 104 - type: Transform - - uid: 1745 - components: - - pos: 21.5,18.5 - parent: 104 - type: Transform - - uid: 1746 - components: - - pos: 21.5,17.5 - parent: 104 - type: Transform - - uid: 1747 - components: - - pos: 21.5,16.5 - parent: 104 - type: Transform - - uid: 1748 - components: - - pos: 21.5,15.5 - parent: 104 - type: Transform - - uid: 1749 - components: - - pos: 21.5,14.5 - parent: 104 - type: Transform - - uid: 1750 - components: - - pos: 21.5,12.5 - parent: 104 - type: Transform - - uid: 1751 - components: - - pos: 9.5,19.5 - parent: 104 - type: Transform - - uid: 1752 - components: - - pos: -2.5,23.5 - parent: 104 - type: Transform - - uid: 1753 - components: - - pos: -3.5,23.5 - parent: 104 - type: Transform - - uid: 1754 - components: - - pos: -4.5,23.5 - parent: 104 - type: Transform - - uid: 1755 - components: - - pos: -5.5,23.5 - parent: 104 - type: Transform - - uid: 1756 - components: - - pos: -6.5,23.5 - parent: 104 - type: Transform - - uid: 1757 - components: - - pos: -7.5,23.5 - parent: 104 - type: Transform - - uid: 1762 - components: - - pos: 1.5,-18.5 - parent: 104 - type: Transform - - uid: 1767 - components: - - pos: -19.5,7.5 - parent: 104 - type: Transform - - uid: 1768 - components: - - pos: -19.5,6.5 - parent: 104 - type: Transform - - uid: 1769 - components: - - pos: -19.5,5.5 - parent: 104 - type: Transform - - uid: 1770 - components: - - pos: -18.5,7.5 - parent: 104 - type: Transform - - uid: 1771 - components: - - pos: -18.5,6.5 - parent: 104 - type: Transform - - uid: 1772 - components: - - pos: -18.5,5.5 - parent: 104 - type: Transform - - uid: 1773 - components: - - pos: -17.5,7.5 - parent: 104 - type: Transform - - uid: 1774 - components: - - pos: -17.5,6.5 - parent: 104 - type: Transform - - uid: 1775 - components: - - pos: -17.5,5.5 - parent: 104 - type: Transform - - uid: 1776 - components: - - pos: -21.5,19.5 - parent: 104 - type: Transform - - uid: 1777 - components: - - pos: -22.5,19.5 - parent: 104 - type: Transform - - uid: 1778 - components: - - pos: -21.5,18.5 - parent: 104 - type: Transform - - uid: 1779 - components: - - pos: -22.5,18.5 - parent: 104 - type: Transform - - uid: 1780 - components: - - pos: -22.5,17.5 - parent: 104 - type: Transform - - uid: 1781 - components: - - pos: -23.5,17.5 - parent: 104 - type: Transform - - uid: 1782 - components: - - pos: -23.5,16.5 - parent: 104 - type: Transform - - uid: 1792 - components: - - pos: 4.5,-19.5 - parent: 104 - type: Transform - - uid: 1793 - components: - - pos: 4.5,-20.5 - parent: 104 - type: Transform - - uid: 1794 - components: - - pos: 2.5,-19.5 - parent: 104 - type: Transform - - uid: 1795 - components: - - pos: 2.5,-20.5 - parent: 104 - type: Transform - - uid: 1796 - components: - - pos: -1.5,-10.5 - parent: 104 - type: Transform - - uid: 1797 - components: - - pos: 3.5,-19.5 - parent: 104 - type: Transform - - uid: 1798 - components: - - pos: 3.5,-20.5 - parent: 104 - type: Transform - - uid: 1801 - components: - - pos: 7.5,-19.5 - parent: 104 - type: Transform - - uid: 1802 - components: - - pos: 7.5,-20.5 - parent: 104 - type: Transform - - uid: 1803 - components: - - pos: 7.5,-21.5 - parent: 104 - type: Transform - - uid: 1804 - components: - - pos: 5.5,-19.5 - parent: 104 - type: Transform - - uid: 1805 - components: - - pos: 5.5,-20.5 - parent: 104 - type: Transform - - uid: 1806 - components: - - pos: 5.5,-21.5 - parent: 104 - type: Transform - - uid: 1807 - components: - - pos: 6.5,-19.5 - parent: 104 - type: Transform - - uid: 1808 - components: - - pos: 6.5,-20.5 - parent: 104 - type: Transform - - uid: 1809 - components: - - pos: 6.5,-21.5 - parent: 104 - type: Transform - - uid: 1835 - components: - - pos: 8.5,-19.5 - parent: 104 - type: Transform - - uid: 1836 - components: - - pos: 8.5,-20.5 - parent: 104 - type: Transform - - uid: 1837 - components: - - pos: 8.5,-21.5 - parent: 104 - type: Transform - - uid: 1865 - components: - - pos: 16.5,-21.5 - parent: 104 - type: Transform - - uid: 1870 - components: - - pos: 17.5,-21.5 - parent: 104 - type: Transform - - uid: 1875 - components: - - pos: 18.5,-21.5 - parent: 104 - type: Transform - - uid: 1880 - components: - - pos: 19.5,-21.5 - parent: 104 - type: Transform - - uid: 1884 - components: - - pos: 20.5,-21.5 - parent: 104 - type: Transform - - uid: 1888 - components: - - pos: 21.5,-21.5 - parent: 104 - type: Transform - - uid: 1892 - components: - - pos: 22.5,-21.5 - parent: 104 - type: Transform - - uid: 1896 - components: - - pos: 23.5,-21.5 - parent: 104 - type: Transform - - uid: 1900 - components: - - pos: 24.5,-21.5 - parent: 104 - type: Transform - - uid: 1904 - components: - - pos: 25.5,-21.5 - parent: 104 - type: Transform - - uid: 1909 - components: - - pos: 28.5,-11.5 - parent: 104 - type: Transform - - uid: 1910 - components: - - pos: 28.5,-10.5 - parent: 104 - type: Transform - - uid: 1911 - components: - - pos: 28.5,-9.5 - parent: 104 - type: Transform - - uid: 1912 - components: - - pos: 28.5,-8.5 - parent: 104 - type: Transform - - uid: 1913 - components: - - pos: 26.5,-21.5 - parent: 104 - type: Transform - - uid: 1923 - components: - - pos: 26.5,-11.5 - parent: 104 - type: Transform - - uid: 1924 - components: - - pos: 26.5,-10.5 - parent: 104 - type: Transform - - uid: 1925 - components: - - pos: 26.5,-9.5 - parent: 104 - type: Transform - - uid: 1926 - components: - - pos: 26.5,-8.5 - parent: 104 - type: Transform - - uid: 1927 - components: - - pos: 26.5,-7.5 - parent: 104 - type: Transform - - uid: 1928 - components: - - pos: 26.5,-6.5 - parent: 104 - type: Transform - - uid: 1930 - components: - - pos: 26.5,-5.5 - parent: 104 - type: Transform - - uid: 1934 - components: - - pos: 26.5,-4.5 - parent: 104 - type: Transform - - uid: 1935 - components: - - pos: 26.5,-3.5 - parent: 104 - type: Transform - - uid: 1936 - components: - - pos: 26.5,-2.5 - parent: 104 - type: Transform - - uid: 1937 - components: - - pos: 26.5,-1.5 - parent: 104 - type: Transform - - uid: 1938 - components: - - pos: 26.5,-0.5 - parent: 104 - type: Transform - - uid: 1939 - components: - - pos: 26.5,0.5 - parent: 104 - type: Transform - - uid: 1940 - components: - - pos: 26.5,1.5 - parent: 104 - type: Transform - - uid: 1941 - components: - - pos: 26.5,2.5 - parent: 104 - type: Transform - - uid: 1942 - components: - - pos: 27.5,-21.5 - parent: 104 - type: Transform - - uid: 1952 - components: - - pos: 27.5,-11.5 - parent: 104 - type: Transform - - uid: 1953 - components: - - pos: 27.5,-10.5 - parent: 104 - type: Transform - - uid: 1954 - components: - - pos: 27.5,-9.5 - parent: 104 - type: Transform - - uid: 1955 - components: - - pos: 27.5,-8.5 - parent: 104 - type: Transform - - uid: 1956 - components: - - pos: 27.5,-7.5 - parent: 104 - type: Transform - - uid: 1957 - components: - - pos: 27.5,-6.5 - parent: 104 - type: Transform - - uid: 1958 - components: - - pos: 27.5,-5.5 - parent: 104 - type: Transform - - uid: 1959 - components: - - pos: 27.5,-4.5 - parent: 104 - type: Transform - - uid: 1960 - components: - - pos: 27.5,-3.5 - parent: 104 - type: Transform - - uid: 1961 - components: - - pos: 27.5,-2.5 - parent: 104 - type: Transform - - uid: 1962 - components: - - pos: 27.5,-1.5 - parent: 104 - type: Transform - - uid: 1963 - components: - - pos: 27.5,-0.5 - parent: 104 - type: Transform - - uid: 1964 - components: - - pos: 27.5,0.5 - parent: 104 - type: Transform - - uid: 1965 - components: - - pos: 27.5,1.5 - parent: 104 - type: Transform - - uid: 1966 - components: - - pos: 27.5,2.5 - parent: 104 - type: Transform - - uid: 1967 - components: - - pos: 28.5,-21.5 - parent: 104 - type: Transform - - uid: 1973 - components: - - pos: 30.5,-1.5 - parent: 104 - type: Transform - - uid: 1974 - components: - - pos: 30.5,-0.5 - parent: 104 - type: Transform - - uid: 1975 - components: - - pos: 30.5,0.5 - parent: 104 - type: Transform - - uid: 1976 - components: - - pos: 30.5,1.5 - parent: 104 - type: Transform - - uid: 1977 - components: - - pos: 30.5,2.5 - parent: 104 - type: Transform - - uid: 1978 - components: - - pos: 28.5,-7.5 - parent: 104 - type: Transform - - uid: 1979 - components: - - pos: 28.5,-6.5 - parent: 104 - type: Transform - - uid: 1980 - components: - - pos: 28.5,-5.5 - parent: 104 - type: Transform - - uid: 1981 - components: - - pos: 28.5,-4.5 - parent: 104 - type: Transform - - uid: 1982 - components: - - pos: 28.5,-3.5 - parent: 104 - type: Transform - - uid: 1983 - components: - - pos: 28.5,-2.5 - parent: 104 - type: Transform - - uid: 1984 - components: - - pos: 28.5,-1.5 - parent: 104 - type: Transform - - uid: 1985 - components: - - pos: 28.5,-0.5 - parent: 104 - type: Transform - - uid: 1986 - components: - - pos: 28.5,0.5 - parent: 104 - type: Transform - - uid: 1987 - components: - - pos: 28.5,1.5 - parent: 104 - type: Transform - - uid: 1988 - components: - - pos: 28.5,2.5 - parent: 104 - type: Transform - - uid: 1989 - components: - - pos: 29.5,-20.5 - parent: 104 - type: Transform - - uid: 1990 - components: - - pos: 29.5,-19.5 - parent: 104 - type: Transform - - uid: 1991 - components: - - pos: 29.5,-18.5 - parent: 104 - type: Transform - - uid: 1992 - components: - - pos: 29.5,-17.5 - parent: 104 - type: Transform - - uid: 1993 - components: - - pos: 29.5,-16.5 - parent: 104 - type: Transform - - uid: 1994 - components: - - pos: 29.5,-15.5 - parent: 104 - type: Transform - - uid: 1995 - components: - - pos: 29.5,-14.5 - parent: 104 - type: Transform - - uid: 1996 - components: - - pos: 29.5,-13.5 - parent: 104 - type: Transform - - uid: 1997 - components: - - pos: 29.5,-12.5 - parent: 104 - type: Transform - - uid: 1998 - components: - - pos: 29.5,-11.5 - parent: 104 - type: Transform - - uid: 1999 - components: - - pos: 29.5,-10.5 - parent: 104 - type: Transform - - uid: 2000 - components: - - pos: 29.5,-9.5 - parent: 104 - type: Transform - - uid: 2001 - components: - - pos: 29.5,-8.5 - parent: 104 - type: Transform - - uid: 2002 - components: - - pos: 29.5,-7.5 - parent: 104 - type: Transform - - uid: 2003 - components: - - pos: 29.5,-6.5 - parent: 104 - type: Transform - - uid: 2004 - components: - - pos: 29.5,-5.5 - parent: 104 - type: Transform - - uid: 2005 - components: - - pos: 29.5,-4.5 - parent: 104 - type: Transform - - uid: 2006 - components: - - pos: 29.5,-3.5 - parent: 104 - type: Transform - - uid: 2007 - components: - - pos: 29.5,-2.5 - parent: 104 - type: Transform - - uid: 2008 - components: - - pos: 29.5,-1.5 - parent: 104 - type: Transform - - uid: 2009 - components: - - pos: 29.5,-0.5 - parent: 104 - type: Transform - - uid: 2010 - components: - - pos: 29.5,0.5 - parent: 104 - type: Transform - - uid: 2011 - components: - - pos: 29.5,1.5 - parent: 104 - type: Transform - - uid: 2012 - components: - - pos: 29.5,2.5 - parent: 104 - type: Transform - - uid: 2013 - components: - - pos: 30.5,-19.5 - parent: 104 - type: Transform - - uid: 2014 - components: - - pos: 30.5,-18.5 - parent: 104 - type: Transform - - uid: 2015 - components: - - pos: 30.5,-17.5 - parent: 104 - type: Transform - - uid: 2020 - components: - - pos: 30.5,-16.5 - parent: 104 - type: Transform - - uid: 2023 - components: - - pos: 30.5,-15.5 - parent: 104 - type: Transform - - uid: 2024 - components: - - pos: 30.5,-14.5 - parent: 104 - type: Transform - - uid: 2025 - components: - - pos: 30.5,-13.5 - parent: 104 - type: Transform - - uid: 2026 - components: - - pos: 30.5,-12.5 - parent: 104 - type: Transform - - uid: 2029 - components: - - pos: 30.5,-9.5 - parent: 104 - type: Transform - - uid: 2030 - components: - - pos: 30.5,-8.5 - parent: 104 - type: Transform - - uid: 2032 - components: - - pos: 30.5,-7.5 - parent: 104 - type: Transform - - uid: 2033 - components: - - pos: 30.5,-6.5 - parent: 104 - type: Transform - - uid: 2034 - components: - - pos: 30.5,-5.5 - parent: 104 - type: Transform - - uid: 2035 - components: - - pos: 30.5,-4.5 - parent: 104 - type: Transform - - uid: 2036 - components: - - pos: 30.5,-3.5 - parent: 104 - type: Transform - - uid: 2037 - components: - - pos: 30.5,-2.5 - parent: 104 - type: Transform - - uid: 2038 - components: - - pos: 20.5,-0.5 - parent: 104 - type: Transform - - uid: 2039 - components: - - pos: 20.5,-1.5 - parent: 104 - type: Transform - - uid: 2040 - components: - - pos: 15.5,2.5 - parent: 104 - type: Transform - - uid: 2041 - components: - - pos: 16.5,2.5 - parent: 104 - type: Transform - - uid: 2042 - components: - - pos: 19.5,0.5 - parent: 104 - type: Transform - - uid: 2043 - components: - - pos: 19.5,-0.5 - parent: 104 - type: Transform - - uid: 2044 - components: - - pos: 19.5,-1.5 - parent: 104 - type: Transform - - uid: 2045 - components: - - pos: 25.5,2.5 - parent: 104 - type: Transform - - uid: 2046 - components: - - pos: 25.5,1.5 - parent: 104 - type: Transform - - uid: 2047 - components: - - pos: 25.5,0.5 - parent: 104 - type: Transform - - uid: 2049 - components: - - pos: 25.5,-0.5 - parent: 104 - type: Transform - - uid: 2051 - components: - - pos: 25.5,-1.5 - parent: 104 - type: Transform - - uid: 2052 - components: - - pos: 24.5,2.5 - parent: 104 - type: Transform - - uid: 2053 - components: - - pos: 24.5,1.5 - parent: 104 - type: Transform - - uid: 2054 - components: - - pos: 24.5,0.5 - parent: 104 - type: Transform - - uid: 2055 - components: - - pos: 24.5,-0.5 - parent: 104 - type: Transform - - uid: 2056 - components: - - pos: 24.5,-1.5 - parent: 104 - type: Transform - - uid: 2057 - components: - - pos: 23.5,2.5 - parent: 104 - type: Transform - - uid: 2058 - components: - - pos: 23.5,1.5 - parent: 104 - type: Transform - - uid: 2059 - components: - - pos: 23.5,0.5 - parent: 104 - type: Transform - - uid: 2060 - components: - - pos: 23.5,-0.5 - parent: 104 - type: Transform - - uid: 2061 - components: - - pos: 23.5,-1.5 - parent: 104 - type: Transform - - uid: 2062 - components: - - pos: 22.5,2.5 - parent: 104 - type: Transform - - uid: 2063 - components: - - pos: 22.5,1.5 - parent: 104 - type: Transform - - uid: 2064 - components: - - pos: 22.5,0.5 - parent: 104 - type: Transform - - uid: 2065 - components: - - pos: 22.5,-0.5 - parent: 104 - type: Transform - - uid: 2066 - components: - - pos: 22.5,-1.5 - parent: 104 - type: Transform - - uid: 2067 - components: - - pos: 14.5,2.5 - parent: 104 - type: Transform - - uid: 2068 - components: - - pos: 15.5,1.5 - parent: 104 - type: Transform - - uid: 2069 - components: - - pos: 21.5,0.5 - parent: 104 - type: Transform - - uid: 2070 - components: - - pos: 21.5,-0.5 - parent: 104 - type: Transform - - uid: 2071 - components: - - pos: 21.5,-1.5 - parent: 104 - type: Transform - - uid: 2072 - components: - - pos: 14.5,3.5 - parent: 104 - type: Transform - - uid: 2073 - components: - - pos: 17.5,-0.5 - parent: 104 - type: Transform - - uid: 2074 - components: - - pos: 17.5,0.5 - parent: 104 - type: Transform - - uid: 2075 - components: - - pos: 17.5,1.5 - parent: 104 - type: Transform - - uid: 2076 - components: - - pos: 18.5,-1.5 - parent: 104 - type: Transform - - uid: 2077 - components: - - pos: 18.5,-0.5 - parent: 104 - type: Transform - - uid: 2078 - components: - - pos: 18.5,0.5 - parent: 104 - type: Transform - - uid: 2079 - components: - - pos: 18.5,1.5 - parent: 104 - type: Transform - - uid: 2080 - components: - - pos: -12.5,28.5 - parent: 104 - type: Transform - - uid: 2084 - components: - - pos: -12.5,27.5 - parent: 104 - type: Transform - - uid: 2085 - components: - - pos: -12.5,26.5 - parent: 104 - type: Transform - - uid: 2086 - components: - - pos: -12.5,25.5 - parent: 104 - type: Transform - - uid: 2087 - components: - - pos: -16.5,25.5 - parent: 104 - type: Transform - - uid: 2088 - components: - - pos: -3.5,-6.5 - parent: 104 - type: Transform - - uid: 2091 - components: - - pos: -15.5,25.5 - parent: 104 - type: Transform - - uid: 2093 - components: - - pos: -14.5,26.5 - parent: 104 - type: Transform - - uid: 2094 - components: - - pos: -14.5,25.5 - parent: 104 - type: Transform - - uid: 2096 - components: - - pos: -13.5,27.5 - parent: 104 - type: Transform - - uid: 2098 - components: - - pos: -13.5,26.5 - parent: 104 - type: Transform - - uid: 2099 - components: - - pos: -13.5,25.5 - parent: 104 - type: Transform - - uid: 2100 - components: - - pos: -20.5,30.5 - parent: 104 - type: Transform - - uid: 2101 - components: - - pos: -20.5,29.5 - parent: 104 - type: Transform - - uid: 2102 - components: - - pos: -20.5,28.5 - parent: 104 - type: Transform - - uid: 2103 - components: - - pos: -20.5,27.5 - parent: 104 - type: Transform - - uid: 2104 - components: - - pos: -20.5,26.5 - parent: 104 - type: Transform - - uid: 2105 - components: - - pos: -20.5,25.5 - parent: 104 - type: Transform - - uid: 2106 - components: - - pos: -20.5,24.5 - parent: 104 - type: Transform - - uid: 2107 - components: - - pos: -19.5,30.5 - parent: 104 - type: Transform - - uid: 2108 - components: - - pos: -19.5,29.5 - parent: 104 - type: Transform - - uid: 2109 - components: - - pos: -19.5,28.5 - parent: 104 - type: Transform - - uid: 2110 - components: - - pos: -19.5,27.5 - parent: 104 - type: Transform - - uid: 2111 - components: - - pos: -19.5,26.5 - parent: 104 - type: Transform - - uid: 2112 - components: - - pos: -19.5,25.5 - parent: 104 - type: Transform - - uid: 2113 - components: - - pos: -19.5,24.5 - parent: 104 - type: Transform - - uid: 2115 - components: - - pos: -18.5,30.5 - parent: 104 - type: Transform - - uid: 2116 - components: - - pos: -18.5,29.5 - parent: 104 - type: Transform - - uid: 2117 - components: - - pos: -18.5,28.5 - parent: 104 - type: Transform - - uid: 2118 - components: - - pos: -18.5,27.5 - parent: 104 - type: Transform - - uid: 2119 - components: - - pos: -18.5,26.5 - parent: 104 - type: Transform - - uid: 2120 - components: - - pos: -18.5,25.5 - parent: 104 - type: Transform - - uid: 2121 - components: - - pos: -18.5,24.5 - parent: 104 - type: Transform - - uid: 2122 - components: - - pos: -17.5,28.5 - parent: 104 - type: Transform - - uid: 2123 - components: - - pos: -17.5,27.5 - parent: 104 - type: Transform - - uid: 2124 - components: - - pos: -17.5,25.5 - parent: 104 - type: Transform - - uid: 2125 - components: - - pos: -11.5,28.5 - parent: 104 - type: Transform - - uid: 2127 - components: - - pos: -11.5,27.5 - parent: 104 - type: Transform - - uid: 2128 - components: - - pos: -11.5,26.5 - parent: 104 - type: Transform - - uid: 2129 - components: - - pos: -11.5,25.5 - parent: 104 - type: Transform - - uid: 2130 - components: - - pos: -11.5,24.5 - parent: 104 - type: Transform - - uid: 2131 - components: - - pos: -21.5,31.5 - parent: 104 - type: Transform - - uid: 2132 - components: - - pos: -20.5,31.5 - parent: 104 - type: Transform - - uid: 2133 - components: - - pos: -19.5,31.5 - parent: 104 - type: Transform - - uid: 2134 - components: - - pos: -10.5,28.5 - parent: 104 - type: Transform - - uid: 2136 - components: - - pos: -10.5,27.5 - parent: 104 - type: Transform - - uid: 2137 - components: - - pos: -10.5,26.5 - parent: 104 - type: Transform - - uid: 2138 - components: - - pos: -10.5,25.5 - parent: 104 - type: Transform - - uid: 2139 - components: - - pos: -10.5,24.5 - parent: 104 - type: Transform - - uid: 2140 - components: - - pos: -9.5,29.5 - parent: 104 - type: Transform - - uid: 2141 - components: - - pos: -9.5,28.5 - parent: 104 - type: Transform - - uid: 2142 - components: - - pos: -9.5,27.5 - parent: 104 - type: Transform - - uid: 2143 - components: - - pos: -9.5,26.5 - parent: 104 - type: Transform - - uid: 2144 - components: - - pos: -9.5,25.5 - parent: 104 - type: Transform - - uid: 2145 - components: - - pos: -9.5,24.5 - parent: 104 - type: Transform - - uid: 2146 - components: - - pos: -8.5,29.5 - parent: 104 - type: Transform - - uid: 2147 - components: - - pos: -8.5,28.5 - parent: 104 - type: Transform - - uid: 2148 - components: - - pos: -8.5,27.5 - parent: 104 - type: Transform - - uid: 2149 - components: - - pos: -8.5,26.5 - parent: 104 - type: Transform - - uid: 2150 - components: - - pos: -8.5,25.5 - parent: 104 - type: Transform - - uid: 2151 - components: - - pos: -8.5,24.5 - parent: 104 - type: Transform - - uid: 2152 - components: - - pos: -7.5,29.5 - parent: 104 - type: Transform - - uid: 2153 - components: - - pos: -7.5,28.5 - parent: 104 - type: Transform - - uid: 2154 - components: - - pos: -7.5,27.5 - parent: 104 - type: Transform - - uid: 2155 - components: - - pos: -7.5,26.5 - parent: 104 - type: Transform - - uid: 2156 - components: - - pos: -7.5,25.5 - parent: 104 - type: Transform - - uid: 2157 - components: - - pos: -7.5,24.5 - parent: 104 - type: Transform - - uid: 2158 - components: - - pos: -6.5,29.5 - parent: 104 - type: Transform - - uid: 2159 - components: - - pos: -6.5,28.5 - parent: 104 - type: Transform - - uid: 2160 - components: - - pos: -6.5,27.5 - parent: 104 - type: Transform - - uid: 2161 - components: - - pos: -6.5,26.5 - parent: 104 - type: Transform - - uid: 2162 - components: - - pos: -6.5,25.5 - parent: 104 - type: Transform - - uid: 2163 - components: - - pos: -6.5,24.5 - parent: 104 - type: Transform - - uid: 2164 - components: - - pos: -5.5,29.5 - parent: 104 - type: Transform - - uid: 2165 - components: - - pos: -5.5,28.5 - parent: 104 - type: Transform - - uid: 2166 - components: - - pos: -5.5,27.5 - parent: 104 - type: Transform - - uid: 2167 - components: - - pos: -5.5,26.5 - parent: 104 - type: Transform - - uid: 2168 - components: - - pos: -5.5,25.5 - parent: 104 - type: Transform - - uid: 2169 - components: - - pos: -5.5,24.5 - parent: 104 - type: Transform - - uid: 2170 - components: - - pos: -4.5,29.5 - parent: 104 - type: Transform - - uid: 2171 - components: - - pos: -4.5,28.5 - parent: 104 - type: Transform - - uid: 2172 - components: - - pos: -4.5,27.5 - parent: 104 - type: Transform - - uid: 2173 - components: - - pos: -4.5,26.5 - parent: 104 - type: Transform - - uid: 2174 - components: - - pos: -4.5,25.5 - parent: 104 - type: Transform - - uid: 2175 - components: - - pos: -4.5,24.5 - parent: 104 - type: Transform - - uid: 2176 - components: - - pos: -3.5,28.5 - parent: 104 - type: Transform - - uid: 2177 - components: - - pos: -3.5,27.5 - parent: 104 - type: Transform - - uid: 2178 - components: - - pos: -3.5,26.5 - parent: 104 - type: Transform - - uid: 2179 - components: - - pos: -3.5,25.5 - parent: 104 - type: Transform - - uid: 2180 - components: - - pos: -3.5,24.5 - parent: 104 - type: Transform - - uid: 2181 - components: - - pos: -2.5,26.5 - parent: 104 - type: Transform - - uid: 2183 - components: - - pos: -2.5,25.5 - parent: 104 - type: Transform - - uid: 2184 - components: - - pos: -2.5,24.5 - parent: 104 - type: Transform - - uid: 2192 - components: - - pos: -5.5,-23.5 - parent: 104 - type: Transform - - uid: 2194 - components: - - pos: 15.5,29.5 - parent: 104 - type: Transform - - uid: 2195 - components: - - pos: 10.5,24.5 - parent: 104 - type: Transform - - uid: 2196 - components: - - pos: 15.5,31.5 - parent: 104 - type: Transform - - uid: 2197 - components: - - pos: 16.5,26.5 - parent: 104 - type: Transform - - uid: 2198 - components: - - pos: 15.5,30.5 - parent: 104 - type: Transform - - uid: 2199 - components: - - pos: 15.5,32.5 - parent: 104 - type: Transform - - uid: 2200 - components: - - pos: 16.5,23.5 - parent: 104 - type: Transform - - uid: 2201 - components: - - pos: 16.5,24.5 - parent: 104 - type: Transform - - uid: 2202 - components: - - pos: 16.5,25.5 - parent: 104 - type: Transform - - uid: 2203 - components: - - pos: 10.5,23.5 - parent: 104 - type: Transform - - uid: 2204 - components: - - pos: 10.5,25.5 - parent: 104 - type: Transform - - uid: 2205 - components: - - pos: 10.5,26.5 - parent: 104 - type: Transform - - uid: 2206 - components: - - pos: 10.5,27.5 - parent: 104 - type: Transform - - uid: 2207 - components: - - pos: 10.5,28.5 - parent: 104 - type: Transform - - uid: 2208 - components: - - pos: 11.5,23.5 - parent: 104 - type: Transform - - uid: 2209 - components: - - pos: 11.5,24.5 - parent: 104 - type: Transform - - uid: 2210 - components: - - pos: 11.5,25.5 - parent: 104 - type: Transform - - uid: 2211 - components: - - pos: 11.5,26.5 - parent: 104 - type: Transform - - uid: 2212 - components: - - pos: 11.5,27.5 - parent: 104 - type: Transform - - uid: 2213 - components: - - pos: 11.5,28.5 - parent: 104 - type: Transform - - uid: 2214 - components: - - pos: 11.5,29.5 - parent: 104 - type: Transform - - uid: 2215 - components: - - pos: 12.5,23.5 - parent: 104 - type: Transform - - uid: 2216 - components: - - pos: 12.5,24.5 - parent: 104 - type: Transform - - uid: 2217 - components: - - pos: 12.5,25.5 - parent: 104 - type: Transform - - uid: 2218 - components: - - pos: 12.5,26.5 - parent: 104 - type: Transform - - uid: 2219 - components: - - pos: 12.5,27.5 - parent: 104 - type: Transform - - uid: 2220 - components: - - pos: 12.5,28.5 - parent: 104 - type: Transform - - uid: 2221 - components: - - pos: 12.5,29.5 - parent: 104 - type: Transform - - uid: 2222 - components: - - pos: 12.5,30.5 - parent: 104 - type: Transform - - uid: 2223 - components: - - pos: 12.5,31.5 - parent: 104 - type: Transform - - uid: 2224 - components: - - pos: 13.5,23.5 - parent: 104 - type: Transform - - uid: 2225 - components: - - pos: 13.5,24.5 - parent: 104 - type: Transform - - uid: 2226 - components: - - pos: 13.5,25.5 - parent: 104 - type: Transform - - uid: 2227 - components: - - pos: 13.5,26.5 - parent: 104 - type: Transform - - uid: 2228 - components: - - pos: 13.5,27.5 - parent: 104 - type: Transform - - uid: 2229 - components: - - pos: 13.5,28.5 - parent: 104 - type: Transform - - uid: 2230 - components: - - pos: 13.5,29.5 - parent: 104 - type: Transform - - uid: 2231 - components: - - pos: 13.5,30.5 - parent: 104 - type: Transform - - uid: 2232 - components: - - pos: 13.5,31.5 - parent: 104 - type: Transform - - uid: 2233 - components: - - pos: 14.5,23.5 - parent: 104 - type: Transform - - uid: 2234 - components: - - pos: 14.5,24.5 - parent: 104 - type: Transform - - uid: 2235 - components: - - pos: 14.5,25.5 - parent: 104 - type: Transform - - uid: 2236 - components: - - pos: 14.5,26.5 - parent: 104 - type: Transform - - uid: 2237 - components: - - pos: 14.5,27.5 - parent: 104 - type: Transform - - uid: 2238 - components: - - pos: 14.5,28.5 - parent: 104 - type: Transform - - uid: 2239 - components: - - pos: 14.5,29.5 - parent: 104 - type: Transform - - uid: 2240 - components: - - pos: 14.5,30.5 - parent: 104 - type: Transform - - uid: 2241 - components: - - pos: 14.5,31.5 - parent: 104 - type: Transform - - uid: 2242 - components: - - pos: 14.5,32.5 - parent: 104 - type: Transform - - uid: 2243 - components: - - pos: 15.5,23.5 - parent: 104 - type: Transform - - uid: 2244 - components: - - pos: 15.5,24.5 - parent: 104 - type: Transform - - uid: 2245 - components: - - pos: 15.5,25.5 - parent: 104 - type: Transform - - uid: 2246 - components: - - pos: 15.5,26.5 - parent: 104 - type: Transform - - uid: 2247 - components: - - pos: 15.5,27.5 - parent: 104 - type: Transform - - uid: 2248 - components: - - pos: 15.5,28.5 - parent: 104 - type: Transform - - uid: 2249 - components: - - pos: 19.5,25.5 - parent: 104 - type: Transform - - uid: 2250 - components: - - pos: 19.5,26.5 - parent: 104 - type: Transform - - uid: 2251 - components: - - pos: 19.5,27.5 - parent: 104 - type: Transform - - uid: 2252 - components: - - pos: 19.5,28.5 - parent: 104 - type: Transform - - uid: 2253 - components: - - pos: 19.5,29.5 - parent: 104 - type: Transform - - uid: 2254 - components: - - pos: 19.5,30.5 - parent: 104 - type: Transform - - uid: 2255 - components: - - pos: 19.5,31.5 - parent: 104 - type: Transform - - uid: 2256 - components: - - pos: 20.5,26.5 - parent: 104 - type: Transform - - uid: 2259 - components: - - pos: 20.5,27.5 - parent: 104 - type: Transform - - uid: 2260 - components: - - pos: 20.5,28.5 - parent: 104 - type: Transform - - uid: 2261 - components: - - pos: 20.5,29.5 - parent: 104 - type: Transform - - uid: 2262 - components: - - pos: 16.5,27.5 - parent: 104 - type: Transform - - uid: 2263 - components: - - pos: 16.5,28.5 - parent: 104 - type: Transform - - uid: 2264 - components: - - pos: 16.5,29.5 - parent: 104 - type: Transform - - uid: 2265 - components: - - pos: 16.5,30.5 - parent: 104 - type: Transform - - uid: 2266 - components: - - pos: 16.5,31.5 - parent: 104 - type: Transform - - uid: 2267 - components: - - pos: 16.5,32.5 - parent: 104 - type: Transform - - uid: 2268 - components: - - pos: 17.5,23.5 - parent: 104 - type: Transform - - uid: 2269 - components: - - pos: 17.5,24.5 - parent: 104 - type: Transform - - uid: 2270 - components: - - pos: 17.5,25.5 - parent: 104 - type: Transform - - uid: 2271 - components: - - pos: 17.5,26.5 - parent: 104 - type: Transform - - uid: 2272 - components: - - pos: 17.5,27.5 - parent: 104 - type: Transform - - uid: 2273 - components: - - pos: 17.5,28.5 - parent: 104 - type: Transform - - uid: 2274 - components: - - pos: 17.5,29.5 - parent: 104 - type: Transform - - uid: 2275 - components: - - pos: 17.5,30.5 - parent: 104 - type: Transform - - uid: 2276 - components: - - pos: 17.5,31.5 - parent: 104 - type: Transform - - uid: 2277 - components: - - pos: 17.5,32.5 - parent: 104 - type: Transform - - uid: 2278 - components: - - pos: 18.5,23.5 - parent: 104 - type: Transform - - uid: 2279 - components: - - pos: 18.5,24.5 - parent: 104 - type: Transform - - uid: 2280 - components: - - pos: 18.5,25.5 - parent: 104 - type: Transform - - uid: 2281 - components: - - pos: 18.5,26.5 - parent: 104 - type: Transform - - uid: 2282 - components: - - pos: 18.5,27.5 - parent: 104 - type: Transform - - uid: 2283 - components: - - pos: 18.5,28.5 - parent: 104 - type: Transform - - uid: 2284 - components: - - pos: 18.5,29.5 - parent: 104 - type: Transform - - uid: 2285 - components: - - pos: 18.5,30.5 - parent: 104 - type: Transform - - uid: 2286 - components: - - pos: 18.5,31.5 - parent: 104 - type: Transform - - uid: 2287 - components: - - pos: 18.5,32.5 - parent: 104 - type: Transform - - uid: 2288 - components: - - pos: 19.5,23.5 - parent: 104 - type: Transform - - uid: 2289 - components: - - pos: 19.5,24.5 - parent: 104 - type: Transform - proto: Multitool entities: - uid: 1555 @@ -11228,15 +11188,6 @@ entities: - pos: 24.5,-16.5 parent: 104 type: Transform -- proto: SyndicatePersonalAI - entities: - - uid: 160 - components: - - flags: SessionSpecific - type: MetaData - - pos: 1.4711013,-3.6405277 - parent: 104 - type: Transform - proto: PianoInstrument entities: - uid: 2430 @@ -13094,6 +13045,15 @@ entities: nameSet: True id: Weeh type: SurveillanceCamera +- proto: SyndicatePersonalAI + entities: + - uid: 160 + components: + - flags: SessionSpecific + type: MetaData + - pos: 1.4711013,-3.6405277 + parent: 104 + type: Transform - proto: SyringeInaprovaline entities: - uid: 1151 diff --git a/Resources/Prototypes/Procedural/biome_templates.yml b/Resources/Prototypes/Procedural/biome_templates.yml index 9ce5f31b5c..cfd543d76e 100644 --- a/Resources/Prototypes/Procedural/biome_templates.yml +++ b/Resources/Prototypes/Procedural/biome_templates.yml @@ -441,13 +441,24 @@ cellularReturnType: Distance2 entities: - WallRockSnow + # Ice tiles + - !type:BiomeTileLayer + tile: FloorIce + threshold: -0.9 + noise: + seed: 0 + noiseType: Cellular + frequency: 0.03 + lacunarity: 2 + fractalType: FBm + octaves: 5 + gain: 1 + cellularDistanceFunction: Euclidean + cellularReturnType: Distance2 - !type:BiomeDummyLayer id: Loot - !type:BiomeTileLayer - threshold: -1.0 - tile: FloorSnow - - !type:BiomeTileLayer - threshold: -0.50 + threshold: -0.7 tile: FloorSnow noise: seed: 0 @@ -457,6 +468,7 @@ - !type:BiomeEntityLayer allowedTiles: - FloorSnow + - FloorIce threshold: 0.95 noise: seed: 3 diff --git a/Resources/Prototypes/Tiles/planet.yml b/Resources/Prototypes/Tiles/planet.yml index 377ada678a..c5095eb5d0 100644 --- a/Resources/Prototypes/Tiles/planet.yml +++ b/Resources/Prototypes/Tiles/planet.yml @@ -62,6 +62,7 @@ - 1.0 - 1.0 - 1.0 + edgeSpritePriority: 1 edgeSprites: SouthEast: /Textures/Tiles/Planet/Grass/single_edge.png NorthEast: /Textures/Tiles/Planet/Grass/single_edge.png @@ -97,7 +98,7 @@ # Snow - type: tile id: FloorSnow - name: tiles-snow-floor + name: tiles-snow sprite: /Textures/Tiles/Planet/Snow/snow.png variants: 13 placementVariants: @@ -114,15 +115,50 @@ - 0.0166 - 0.0116 - 0.0116 - #cornerSprites: - # - /Textures/Tiles/Planet/Snow/single_edge.png - #cardinalSprites: - # - /Textures/Tiles/Planet/Snow/double_edge.png + edgeSpritePriority: 2 + edgeSprites: + South: /Textures/Tiles/Planet/Snow/snow_double_edge_south.png + East: /Textures/Tiles/Planet/Snow/snow_double_edge_east.png + North: /Textures/Tiles/Planet/Snow/snow_double_edge_north.png + West: /Textures/Tiles/Planet/Snow/snow_double_edge_west.png + isSubfloor: true + canCrowbar: false + footstepSounds: + collection: FootstepSnow + heatCapacity: 10000 + weather: true + indestructible: true + +# Ice +- type: tile + id: FloorIce + name: tiles-ice + sprite: /Textures/Tiles/Planet/Snow/ice.png + isSubfloor: true + canCrowbar: false + friction: 0.05 + heatCapacity: 10000 + weather: true + mobFriction: 0.5 + mobFrictionNoInput: 0.05 + mobAcceleration: 2 + indestructible: true + +# Dug snow +- type: tile + id: FloorSnowDug + name: tiles-snow-dug + sprite: /Textures/Tiles/Planet/Snow/snow_dug.png + edgeSpritePriority: 1 + edgeSprites: + South: /Textures/Tiles/Planet/Snow/snow_dug_double_edge_south.png + East: /Textures/Tiles/Planet/Snow/snow_dug_double_edge_east.png + North: /Textures/Tiles/Planet/Snow/snow_dug_double_edge_north.png + West: /Textures/Tiles/Planet/Snow/snow_dug_double_edge_west.png isSubfloor: true canCrowbar: false footstepSounds: collection: FootstepSnow - friction: 0.20 heatCapacity: 10000 weather: true indestructible: true diff --git a/Resources/Textures/Tiles/Planet/Snow/edge0.png b/Resources/Textures/Tiles/Planet/Snow/edge0.png deleted file mode 100644 index a998a72873..0000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/edge0.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/edge1.png b/Resources/Textures/Tiles/Planet/Snow/edge1.png deleted file mode 100644 index 04f6f7222a..0000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/edge1.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/edge2.png b/Resources/Textures/Tiles/Planet/Snow/edge2.png deleted file mode 100644 index 579cecc73f..0000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/edge2.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/gravsnow_corner.png b/Resources/Textures/Tiles/Planet/Snow/gravsnow_corner.png deleted file mode 100644 index d157293bde..0000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/gravsnow_corner.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/gravsnow_surround.png b/Resources/Textures/Tiles/Planet/Snow/gravsnow_surround.png deleted file mode 100644 index 0745067fe1..0000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/gravsnow_surround.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/meta.json b/Resources/Textures/Tiles/Planet/Snow/meta.json index 7280e2ce99..3ed950dd98 100644 --- a/Resources/Textures/Tiles/Planet/Snow/meta.json +++ b/Resources/Textures/Tiles/Planet/Snow/meta.json @@ -9,37 +9,38 @@ "name": "snow" }, { - "name": "snow_corner", - "directions": 8 + "name": "snow_double_edge_south", }, { - "name": "snow_surround", - "directions": 4 + "name": "snow_double_edge_east", }, { - "name": "gravsnow" + "name": "snow_double_edge_north", }, { - "name": "gravsnow_corner", - "directions": 8 + "name": "snow_double_edge_west", }, { - "name": "gravsnow_surround", - "directions": 4 + "name": "snow_dug" + }, + { + "name": "snow_dug_double_edge_south", + }, + { + "name": "snow_dug_double_edge_east", + }, + { + "name": "snow_dug_double_edge_north", + }, + { + "name": "snow_dug_double_edge_west", }, { "name": "plating" }, - { - "name": "platingdrift", - "directions": 4 - }, { "name": "ice" }, - { - "name": "snowwhite" - }, { "name": "snow0" }, @@ -81,18 +82,6 @@ }, { "name": "permafrost" - }, - { - "name": "edge0", - "directions": 4 - }, - { - "name": "edge1", - "directions": 4 - }, - { - "name": "edge2", - "directions": 4 } ] } \ No newline at end of file diff --git a/Resources/Textures/Tiles/Planet/Snow/platingdrift.png b/Resources/Textures/Tiles/Planet/Snow/platingdrift.png deleted file mode 100644 index 8b85de8844..0000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/platingdrift.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_corner.png b/Resources/Textures/Tiles/Planet/Snow/snow_corner.png deleted file mode 100644 index 9798cdfb4a..0000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/snow_corner.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_east.png b/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_east.png new file mode 100644 index 0000000000..d75501e3fc Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_east.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_north.png b/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_north.png new file mode 100644 index 0000000000..bb8eb4b06a Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_north.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_south.png b/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_south.png new file mode 100644 index 0000000000..1c54059785 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_south.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_west.png b/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_west.png new file mode 100644 index 0000000000..07cd0c2745 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Snow/snow_double_edge_west.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/gravsnow.png b/Resources/Textures/Tiles/Planet/Snow/snow_dug.png similarity index 100% rename from Resources/Textures/Tiles/Planet/Snow/gravsnow.png rename to Resources/Textures/Tiles/Planet/Snow/snow_dug.png diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_east.png b/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_east.png new file mode 100644 index 0000000000..af722f9671 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_east.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_north.png b/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_north.png new file mode 100644 index 0000000000..3135cef726 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_north.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_south.png b/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_south.png new file mode 100644 index 0000000000..acbeaccde0 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_south.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_west.png b/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_west.png new file mode 100644 index 0000000000..4cdfa2ebc2 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Snow/snow_dug_double_edge_west.png differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_piss.png b/Resources/Textures/Tiles/Planet/Snow/snow_piss.png deleted file mode 100644 index 7c57e327ca..0000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/snow_piss.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snow_surround.png b/Resources/Textures/Tiles/Planet/Snow/snow_surround.png deleted file mode 100644 index 52289ed92f..0000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/snow_surround.png and /dev/null differ diff --git a/Resources/Textures/Tiles/Planet/Snow/snowwhite.png b/Resources/Textures/Tiles/Planet/Snow/snowwhite.png deleted file mode 100644 index 1a44d006f7..0000000000 Binary files a/Resources/Textures/Tiles/Planet/Snow/snowwhite.png and /dev/null differ